{% extends "admin/admin_base.html" %} {% load i18n %} {% block admin_title %}{{ title }}{% endblock %} {% block content %}
{% trans "Site Settings" %}
{% csrf_token %}
{% for field in form %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% if field.errors %} {{ field.errors|striptags }} {% endif %}
{% endfor %}
{% endblock %}