templates: hardcode translations for "account management" page

This commit is contained in:
Frédéric Péters 2016-01-19 17:09:54 +01:00
parent 72e3bbcf15
commit f76d37154a
1 changed files with 6 additions and 10 deletions

View File

@ -10,8 +10,8 @@
{% endblock %}
{% block content %}
<h2>{% trans "Account Management" %}</h2>
<h3>{% trans "Profile" %}</h3>
<h2>Gestion du compte</h2>
<h3>Profil</h3>
<div id="profile">
{% if profile %}
<dl>
@ -30,13 +30,9 @@
</dl>
{% endif %}
<br class="clear" />
<p><a href="{% url 'email-change' %}">{% trans "Change email" %}</a></p>
<p><a href="{% url 'profile_edit' %}">{% trans "Edit profile" %}</a></p>
<p><a href="{% url 'delete_account' %}">{% trans "Delete profile" %}</a></p>
</div>
<div id="credential">
{% for html_block in frontends_block %}
{{ html_block|safe }}
{% endfor %}
<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 %}