{% extends 'layout.main.html' %} {% load i18n %} {% load url from future %} {% block title %}{% trans "Change password" %}{% endblock %} {% block content %}

Update profile of {{ user }}

{% trans "Profile information" %} {% include "partial/_form_field.html" with field=form.first_name %} {% include "partial/_form_field.html" with field=form.last_name %} {% include "partial/_form_field.html" with field=form.mugshot %} {% include "partial/_form_field.html" with field=form.privacy %} {% csrf_token %}
{% endblock %}