{% extends "base.html" %} {% load i18n %} {% block title %}{{ _("Edit Settings") }}{% endblock %} {% block content_title %}{{ _("Edit Settings") }}{% endblock %} {% block content %} {% if auth_forbidden %}

{{ _("Access Forbidden") }}

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

{% else %}
{% csrf_token %} {% if form.errors %} {% endif %}
{% for f in form %}
{{ f }}
{% if f.errors %}
{{ f.errors|join:" " }}
{% endif %} {% if f.help_text %}
{{ f.help_text }}
{% endif %} {% endfor %}

{% url home as home_url %}{% blocktrans %}Back to home page.{% endblocktrans %}

{% endif %} {% endblock %}