{% extends "authentic2/base.html" %} {% load i18n %} {% block title %}Gestion du compte{% endblock %} {% block extra-body-class %}{{ block.super }} account-page{% endblock %} {% block content %}
{% block profile-pre %}{% endblock %}
{% block profile-top %}{% endblock %} {% block profile-data-title %}

Données du compte

{% endblock %} {% block profile-data %}
{% if attributes %} {% for attribute in attributes %}
{{ attribute.attribute.label|capfirst }}
{% if attribute.values|length == 0 %}(non spécifié) {% elif attribute.values|length == 1 %}{{ attribute.values.0 }}{% else %}
    {% for value in attribute.values %}
  • {{ value }}
  • {% endfor %}
{% endif %}
{% endfor %} {% endif %} {% if LAST_LOGIN %}
Dernière connexion {{ LAST_LOGIN }}
{% endif %}
{% endblock %} {% block profile-bottom %}{% endblock %}
{% block profile-post %}{% endblock %}
{% block account-management-pre %}{% endblock %}
{% block account-management-top %}{% endblock %} {% block account-management-title %}

Gestion du compte

{% endblock %} {% block account-management-actions %} {% endblock %}
{% block account-management-other-blocks %} {% for id, block in frontends_block_by_id.items %} {% if id != "password" %}

{{ block.name }}

{{ block.content|safe }}
{% endif %} {% endfor %} {% endblock %} {% block account-management-post %}{% endblock %}
{% endblock %}