{% extends "admin/base_site.html" %} {% load i18n admin_modify adminmedia %} {% block extrastyle %}{{ block.super }}{% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block breadcrumbs %}{% endblock %} {% block content %} {% if auth_forbidden %}

{{ _("Access Forbidden") }}

{{ _("You have not necessary rights to access current page.") }}

{% else %}
{% csrf_token %} {% if form.errors %}

{{ _("Settings cannot be saved cause of validation issues. Check for errors below.") }}

{% endif %}
{% for f in form %} {% ifchanged f.field.app_name %}

{% with app_name=f.field.app_name|default:_("Project") %}{% blocktrans %}{{ app_name }} settings{% endblocktrans %}{% endwith %}

{% endifchanged %}
{% if f.errors %}
    {% for error in f.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{{ f }} {% if f.help_text %}

{{ f.help_text }}

{% endif %}
{% endfor %}
{% endif %} {% endblock %}