{% extends 'base.html' %} {% load bootstrap3 i18n %} {% block profiletab %} class="active"{% endblock %} {% block content %}

{% trans "Profile" %}

{% csrf_token %} {% for form in forms %} {% bootstrap_form form layout="horizontal" %} {% endfor %} {% buttons layout="horizontal" %} {% for url, class, text in buttons %} {{ text }} {% endfor %} {% trans "Cancel" %} {% endbuttons %}
{% endblock %} {% block css %} {{ block.super }} {% for form in forms %}{{ form.media.css }}{% endfor %} {% endblock %} {% block js_end %} {{ block.super }} {% for form in forms %}{{ form.media.js }}{% endfor %} {% endblock %}