{% extends "base.html" %} {% load i18n gravatar %} {% block head_js %} {% endblock %} {% block main-content %}
{% with user_.first_name as firstname %}

{% trans 'profile information'|title %}

{% endwith %}

{% gravatar user_.email 50 %} {{ user_.get_full_name }} ({{ user_.username }})

{% trans "Change your avatar at Gravatar.com" %}


{% csrf_token %}
{% for field in form %}
{{ field }} {{ field.errors }}
{% endfor %}

{% trans "Emails" %}

    {% for email in user_.emails.iterator %}
  • {% gravatar user_.email 30 %} {% if email.address == user_.email %} {% trans "Primary" %} {% else %}
    {% endif %}
  • {% endfor %} {% for email in user_.emails_not_validated.iterator %}
  • {% gravatar user_.email 30 %}

  • {% endfor %}
{% if not BROWSERID_ENABLED %}

{% trans 'Change Password' %}

{% endif %}
{% if CONVERSEJS_ENABLED %}

{% trans 'Change Password' %}

{% trans "This feature is available only for those who need to change the password for some reason as having an old user with the same username, forgot your password to commit, usage of other XMPP Client for connection. Usually, you won't need to change this password. Only change it if you are sure about what you are doing." %}
{% trans "Change Password" %}
{% endif %}
{% endblock %}