{% extends "kfet/base.html" %} {% block extra_head %} {{ negative_form.media }} {% endblock %} {% block title %} {% if account.user == request.user %} Modification de mes informations {% else %} {{ account.trigramme }} - Édition {% endif %} {% endblock %} {% block content-header-title %} {% if account.user == request.user %} Modification de mes informations {% else %} Édition du compte {{ account.trigramme }} {% endif %} {% endblock %} {% block content %}
{% include 'kfet/left_account.html' %}
{% include "kfet/base_messages.html" %}
{% csrf_token %} {{ user_form.as_p }} {{ cof_form.as_p }} {{ account_form.as_p }} {{ group_form.as_p }} {{ negative_form.non_field_errors }} {% for field in negative_form %} {{ field.errors }} {{ field.label_tag }}
{{ field }}
{% if field.help_text %}

{{ field.help_text|safe }}

{% endif %} {% endfor %} {% if perms.kfet.is_team %} {% endif %}
{% endblock %}