{% extends "base.html" %} {% load i18n %} {% comment %} layerindex-web - profile page template Copyright (C) 2013 Intel Corporation Licensed under the MIT license, see COPYING.MIT for details {% endcomment %} {% block content %} {% autoescape on %}
{% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %} {% for field in form.visible_fields %} {% if field.errors %}
{{ field.errors }} {% else %}
{% endif %}
{{ field.label_tag }}
{{ field }}
{% endfor %} {% trans 'Cancel' %} {% csrf_token %} {% endautoescape %} {% endblock %}