This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
vincennes-2014/templates/idp/account_management.html

39 lines
915 B
HTML

{% extends "authentic2/base-page.html" %}
{% load i18n %}
{% block title %}
{% trans "Authentic - Account Management" %}
{% endblock %}
{% block breadcrumb-elements %}
<li class="active">Mon compte</li>
{% endblock %}
{% block content %}
<h2>Gestion du compte</h2>
<h3>Profil</h3>
<div id="profile">
{% if profile %}
<dl>
{% for key, values in profile %}
<dt>{{ key|capfirst }}</dt>
<dd>{% if values|length == 1 %}{{ values.0 }}{% else %}
<ul>
{% for value in values %}
<li>{{ value }}</li>
{% endfor %}
</ul>
{% endif %}
</dd>
{% endfor %}
</dl>
{% endif %}
<br class="clear" />
<p><a href="{% url 'email-change' %}">Modifier votre adresse électronique</a></p>
<p><a href="{% url 'password_change' %}">Modifier votre mot de passe</a></p>
<p><a href="{% url 'profile_edit' %}">Modifier votre profil</a></p>
<p><a href="{% url 'delete_account' %}">Supprimer votre profil</a></p>
</div>
{% endblock %}