{% extends "app_home/base.html" %} {% load static %} {% load i18n %} {% block navbar_app %} {% include 'app_home/_sidebar.html' %} {% endblock %} {% block title %}

{% translate "Configuration" %}


{% translate 'Select service to configure' %}

{% endblock %} {% block content %} {% if appname %}
{% translate appdisplayname %}
{% csrf_token %} {% for field in form %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% if field.errors %}
{{ field.errors.0 }}
{% endif %}
{% endfor %}
{% endif %} {% endblock %}