{% extends "people/profile_base.html" %} {% load widget_tweaks %} {% load i18n avatar_tags %} {% load bootstrap_tags %} {% block body_class %}edit people{% endblock %} {% block body %}
{% autoescape off %}{% avatar profile.username 240 %}{% endautoescape %} {% if user == profile %}

{% trans "Change your avatar" %}

{% endif %}
{% csrf_token %}
{# form|as_bootstrap #} {% for field in form %} {% if field.name not in PROFILE_EDIT_EXCLUDE_FIELD %}
{% render_field field class="form-control" %}
{% endif %} {% endfor %}
{% endblock %}