{% translate 'Nginx App Templates' %}
{% translate 'Available Nginx App Templates' %}
{% translate 'These templates are optimized for specific apps. The scope of a global template can be used for all users. The user scope templates are only for the specific user' %}.
{% if form.errors %}
{% for error in form.non_field_errors %}
{{ error|escape }}
{% endfor %}
{% for field in form %}
{% for error in field.errors %}
{{ error|escape }}
{% endfor %}
{% endfor %}
{% endif %}
{% if messages %}
{% for message in messages %}
{% if message.tags == "success" %}
{{ message }}
{% else %}
{{ message }}
{% endif %}
{% endfor %}
{% endif %}