{% extends "admin/base_site.html" %} {% load i18n admin_urls static admin_modify forge_icons %} {% block content_title %}{% endblock %} {% block content_subtitle %}{% endblock %} {% block content %}
{% include "admin/includes/forge_sidebar.html" %}
{% include "admin/includes/forge_topbar.html" with title="" subtitle="" %}
{% forge_icon "arrow-left" "h-4 w-4" %} {{ opts.app_label|forge_labelize }} {{ opts.verbose_name_plural|capfirst }}
{% if adminform|length > 3 %} {% endif %}
{% csrf_token %}
{% if errors %}

{% blocktranslate count counter=errors|length %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktranslate %}

{{ adminform.form.non_field_errors }}
{% endif %} {% for fieldset in adminform %} {% include "admin/includes/fieldset.html" %} {% endfor %}
{% block submit_buttons_bottom %} {% submit_row %} {% endblock %}
{% endblock %}