{% extends postorius_base_template %} {% load i18n %} {% load bootstrap_tags %} {% load nav_helpers %} {% block head_title %} {% trans 'Profile' %} | {{ user.username }} - {{ block.super }} {% endblock %} {% block content %} {% user_nav 'profile' 'User Profile' %} {% if user.other_emails %} {% endif %}
{% trans 'Mailman display name' %}
{% csrf_token %}
{{ name_form.display_name|add_form_control }}
{% trans 'Username' %} {{ user.username }}
{% trans 'Main email' %} {{ user.email}}
{% trans 'Other emails' %} {% for email in user.other_emails %}

• {{ email }}

{% endfor %}

{% blocktrans %} You can add other addresses to your profile, to use different addresses for your subscriptions. {% endblocktrans %}

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{{ form.email|add_form_control }}
{% for error in form.email.errors %}
{{ error }}
{% endfor %}
{% endblock content %}