{% extends "authentic2/manager/base.html" %} {% load i18n %} {% block messages %} {% if not request.is_ajax %} {{ block.super }} {% endif %} {% endblock %} {% block page_title %}{{ 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.errors %} {% for error in field.errors %} {{ error }} {% endfor %} {% endif %}

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