{% extends 'app/base.html' %} {% load static %} {% block title %} Profile {% endblock title %} {% block content %}


{% csrf_token %} {% if messages %} {% for msg in messages %}
{{msg}}
{% endfor %} {% endif %} {% for fm in form %} {{fm.label_tag}}{{fm}} {{fm.errors|striptags}}
{% endfor %} {% if form.non_field_errors %} {% for error in messages %}

{{error}}

{% endfor %} {% endif %}
{% if not request.user.is_superuser %} Back {% endif %}
{% endblock content %}