{% extends "authentic2/base.html" %} {% load i18n %} {% block title %}Gestion du compte{% endblock %} {% block content %}

Données du compte

{% 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 %}

{% endblock %}