{% extends "nexus/admin/base_site.html" %} {% load url from future %} {% load i18n admin_modify adminmedia %} {% load nexus_admin %} {% block head %} {{ block.super }} {% url 'admin:jsi18n' as jsi18nurl %} {{ media }} {% endblock %} {% if not is_popup %} {% block breadcrumb_bits %}
  • {% trans "Model Admin" %}
  • {{ app_label|capfirst|escape }}
  • {% if has_change_permission %} {{ opts.verbose_name_plural|capfirst }} {% else %} {{ opts.verbose_name_plural|capfirst }} {% endif %}
  • {% if add %} {% trans "Add" %} {{ opts.verbose_name }} {% else %} {{ original|truncatewords:"18" }} {% endif %}
  • {% endblock %} {% endif %} {% block content %} {% block object-tools %} {% if change and not is_popup %} {% endif %} {% endblock %}
    {% csrf_token %}{% block form_top %}{% endblock %}
    {% if is_popup %}{% endif %} {% if save_on_top %}{% submit_row %}{% endif %} {% if errors %}

    {% blocktrans count errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}

    {{ adminform.form.non_field_errors }} {% endif %} {% for fieldset in adminform %} {% include "admin/includes/fieldset.html" %} {% endfor %} {% block after_field_sets %}{% endblock %} {% for inline_admin_formset in inline_admin_formsets %} {% include inline_admin_formset.opts.template %} {% endfor %} {% block after_related_objects %}{% endblock %} {% submit_row %} {% if adminform and add %} {% endif %} {# JavaScript for prepopulated fields #} {% prepopulated_fields_js %}
    {% endblock %}