{% 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 %} {% ifchanged f.field.app_name %}

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

{% endifchanged %}
{{ 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 %}