{% extends 'base.html' %} {% load i18n staticfiles tz stats %} {% block title %}{% trans 'Profile' %} / {{ block.super }}{% endblock title %} {% block nav_tabs %} {% include 'inline/profile_tabs.html' %} {% endblock nav_tabs %} {% block content %} {% trans 'Profile' %} {% if form.non_field_errors %} {% for error in form.non_field_errors %} {{ error }} {% endfor %} {% endif %} {% csrf_token %} {% for field in form %} {{ field.label }} {% if field.help_text %} {{ field.help_text }} {% endif %} {{ field }} {% if field.errors %} {% for error in field.errors %} {{ error }} {% endfor %} {% endif %} {% endfor %} {% trans 'Save' %} {% endblock content %} {% block bottom %} {{ block.super }} {% endblock bottom %}