{% extends "django_mailman3/profile/base.html" %} {% load i18n %} {% load d_gravatar %} {% load static %} {% load bootstrap_tags %} {% block user_profile_content %}
{% csrf_token %}
{% bootstrap_form_horizontal form 3 9 fold_class='md' %}

{{ user.email}}

    {% for address in other_addresses %}
  • {{ address }}
  • {% empty %}
  • {% trans "(no other email)" %}
  • {% endfor %} {% if not SOCIALACCOUNT_ONLY %}
  • {% trans "Link another address" %}
  • {% endif %}
{% if gravatar_url is not None %} {% endif %}

{{ user.date_joined|date:"DATETIME_FORMAT" }}

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