{% extends "base.html" %} {% load i18n gravatar plugins widgets_tag %} {% block title %}Atualizar perfil - SPB{% endblock %} {% block html %} {% import_widgets 'profile' %} {{ block.super }} {% endblock %} {% block bootstrap_js %} {% if not bootstrap_conflict %} {{block.super}} {% endif %} {% endblock%} {% block jquery_js %} {% if not jquery_conflict %} {{block.super}} {% endif %} {% endblock %} {% block head_js %} {% for widget in widgets_profile %} {{widget.get_header}} {% endfor %} {% 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" %}


{% if widgets_profile %} {% endif %}
{% 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 %}

{% trans 'Change Password' %}

{% for widget in widgets_profile %} {% endfor %}
{% endblock %}