{% extends "admin/base_site.html" %} {% load i18n jet_tags static %} {% block extrahead %} {{ block.super }} {% endblock %} {% if not is_popup %} {% block breadcrumbs %} {% endblock %} {% endif %} {% block content %}
{% csrf_token %} {{ form.media }} {{ settings_form.media }} {{ children_formset.media }}
{{ form.non_field_errors }} {{ settings_form.non_field_errors }} {% if form.errors or settings_form.errors %}

{% trans "Please correct the errors below." %}

{% endif %} {% include "jet.dashboard/update_module_fieldset.html" with form=form %} {% if settings_form %} {% include "jet.dashboard/update_module_fieldset.html" with form=settings_form %} {% endif %}
{% if children_formset %}
{{ children_formset.management_form }} {{ children_formset.non_form_errors }}
{% for form in children_formset %} {% endfor %} {% with form=children_formset.empty_form %} {% endwith %}
{% endif %}
{% endblock %}