{% extends "authentic2/manager/base.html" %} {% load i18n %} {% block messages %} {% if not request.is_ajax %} {{ block.super }} {% endif %} {% endblock %} {% block appbar %}

{{ title }}

{% endblock %} {% block content %}
{% if messages %} {% if request.is_ajax %} {% endif %} {% endif %} {% csrf_token %} {% block beforeform %} {% endblock %} {{ form.non_field_errors }} {% for field in form %} {% block beforefield %} {% endblock %}

{{ field.label_tag }} {{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% if field.errors %} {% for error in field.errors %} {{ error }} {% endfor %} {% endif %}

{% block afterfield %} {% endblock %} {% endfor %} {% block afterform %} {% endblock %}
{% trans "Cancel" %}
{% block other_actions %} {% if other_actions %} {% trans "Actions" %} {% for action in other_actions %} {% endfor %} {% endif %} {% endblock %}
{% endblock %}