{% extends "wlprofile/base.html" %} {% load i18n %} {% block title %} {% trans "Profile Editing" %} - {{ block.super }} {% endblock %} {% block content %}

{% trans "Profile Editing" %}

{% for field in profile_form %} {% endfor %}
{{ field.label_tag }} {% ifequal field.name "avatar"%} {% if profile.avatar %} Avatar {% endif %} {% endifequal %} {{ field }} {% ifequal field.name "time_display" %} Documented here {% endifequal %} {% if field.errors %} {{ field.errors }} {% endif %}
{% csrf_token %}

Other options:

{% endblock %}