{% extends "base_account.html" %} {% load i18n %} {% load include_asset %} {% block page_title %}{% trans "Account Settings" %}{% endblock %} {% block page_header %}{% trans "Account Settings" %}{% endblock %} {% block content %}

{% trans "Profile" %}

{% if messages %} {% endif %}
{% csrf_token %}

{% trans "Your details" %}

{{ form.errors.name }} {{ form.name }}
{{ form.errors.email }} {{ form.email }}
{{ form.errors.receives_newsletter }} {{ form.receives_newsletter }}
{% if text_change_pending %}
{{ text_change_pending }}{{ text_email }}
{% trans "Please check your inbox to validate the change." %}
{% trans "Click " %}{% trans "here" %} {% trans "to resend the confirmation e-mail." %}
{% endif %}
{% endblock %}