{% extends "admin/layout.html" %} {% load i18n %} {% load l10n %} {% load url from future %} {% from "admin/macros.html" import page_title, draw_message %} {% import "_forms.html" as form_theme with context %} {% block title %}{% if admin.actions[0].id != action.id and action.name -%} {% if target %}{{ page_title(parent=action.name, title=target) }}{% else %}{{ page_title(title=action.name) }}{% endif %} {%- else -%} {{ page_title(title=admin.name) }} {%- endif %}{% endblock %} {% block content %}

{{ admin.name }}{% if admin.help %} {{ admin.help }}{% endif %}

{% if admin.actions|length > 1 %}{% endif %}
{% if admin.actions[0].id != action.id -%}

{% if target %}{{ target }} {{ action.name }}{% else %}{{ action.name }}{% if action.help %} {{ action.help }}{% endif %}{% endif %}

{% endif %} {% for message in messages_log %} {{ draw_message(message, 'alert-form') }} {% endfor %} {% if message %} {{ draw_message(message, 'alert-form') }} {% endif %} {% block page_help %}{% endblock %} {% block action_body %} {% endblock %} {% endblock %}