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

Données du compte

{% if profile %}
{% for key, values in profile %}
{{ key|capfirst }}
{% if values|length == 0 %}(non spécifié) {% elif values|length == 1 %}{{ values.0 }}{% else %}
    {% for value in values %}
  • {{ value }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endif %}

{% endblock %}