{% extends "admin/base_site.html" %} {% load admin_list compressed i18n staticfiles %} {% block title %} {% block page_title %}{{form.Meta.title}}{% endblock %} {{block.super}} {% endblock %} {% block extrahead %} {% compressed_css "djblets-admin" %} {{form.media.render_css|join:''}} {{block.super}} {% endblock %} {% block scripts-post %} {{block.super}} {{form.media.render_js|join:''}} {% endblock %} {% block bodyclass %}{{block.super}} change-form{% endblock %} {% block content %} {% if form.errors %}

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

{% endif %} {% if saved %} {% endif %}

{% block form_title %}{{form.Meta.title}}{% endblock %}

{% csrf_token %} {{form.non_field_errors}} {% block form_content %} {% include "siteconfig/settings_fieldsets.html" %} {% endblock %} {% block submit_row %}
{% block submit_row_buttons %} {% endblock submit_row_buttons %}
{% endblock submit_row %}
{% endblock %}