{% extends "base.html" %} {% 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 %}
{% if form.errors %} {% endif %}
{% set prev_app_name = None %} {% for f in form %} {% if loop.index == 1 or prev_app_name != f.app_name %}

{% if f.app_name is none %}Project{% else %}{{ f.app_name }}{% endif %} settings

{% endif %}
{{ f }}
{% if f.errors %}
{{ f.errors|join(" ") }}
{% endif %} {% if f.description %}
{{ f.description }}
{% endif %} {% set prev_app_name = f.app_name %} {% endfor %}

{% endif %} {% endblock %}