{% extends 'base.html' %} {% load i18n %} {% get_available_languages as LANGUAGES %} {% get_current_language as CURRENT_LANGUAGE %} {% block title %}Account Settings{% endblock %} {% block main %}
{% include 'core/partial_settings_menu.html' with active='profile' %}
{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %}

{% trans 'Edit Profile' %}

{% csrf_token %} {% for field in form.visible_fields %}
{{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% for error in field.errors %} {% endfor %}
{% endfor %} {% comment %}
{% endcomment %}
{% endblock main %}