{% extends "django_mailman3/profile/base.html" %} {% load i18n %} {% load gravatar %} {% load staticfiles %} {% block user_profile_content %}
{% csrf_token %}
{{ form.as_table }}
{% trans 'User name:' %}
{{ user.username}}
{% trans 'Email:' %}
{{ user.email }}
{% trans 'Other emails:' %}
    {% for address in other_addresses %}
  • {{ address }}
  • {% empty %}
  • {% trans "(no other email)" %}
  • {% endfor %} {% if 'postorius' in INSTALLED_APPS %}
  • {% trans "Link another address" %}
  • {% endif %}
{% trans 'Joined on:' %} {{ user.date_joined|date:"N j Y, H:i" }}

{% trans "or" %} {% trans "cancel" %}

{% endblock %}