{% extends "admin_profile_base.html" %} {% load i18n baseurl %} {% block title %}{% trans "General Settings" %} | {{ block.super }}{% endblock %} {% block body_id %}admingeneral{% endblock %} {% block breadcrumbs %} {{ block.super }}
  • {% trans "General Settings" %}
  • {% endblock %} {% block section_description %}{% trans "Configure here the general settings for your site." %}{% endblock %} {% block section_body %}
    {% csrf_token %} {{ form.non_field_errors }} {% for field in form %}

    {{ field.errors }} {{ field.label_tag }} {{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %}

    {% endfor %}

    {% endblock %}