{% extends "traxauth/base.html" %} {% load i18n %} {% load traxauth_tags %} {% block title %}{% trans "Edit Profile" %}{% endblock %} {% block breadcrumbs-box %} {{ block.super }} › {% trans "Edit Profile" %} {% endblock %} {% block coltype %}profile{% endblock %} {% block content_title %}

{% trans "Edit Profile" %}

{% endblock %} {% block content %}
{% block object-tools %}
{# This is a simple check to determine if the user is the owner of the displayed profile #} {% if user.username == profile.user.username %} {% endif %}
{% endblock %}
{% if settings.TRAXAUTH_ENABLE_GRAVATAR_SUPPORT %}
{% gravatar_for_email profile.user.email 80 %}
{% endif %} {% if form.is_multipart %}
{% csrf_token %} {% else %} {% csrf_token %} {% endif %} {{ userform.as_p }} {{ form.as_p }}

{% endblock %}