{% extends "base.html" %} {% load i18n %} {% block content %}

{% trans "User profile for" %} {{ profile.user }}:

{% trans "You can change your personal information using the form below. Make any changes necessary and then click the 'Change' button."%}

{% if form.errors %}

{% trans "Sorry there are corrections needed in your form below:" %} {{ form.non_field_errors }}

{% endif %} {% if form.is_multipart %}
{% else %} {% endif %} {% csrf_token %} {{ form.as_table }}

{% endblock %}