{% extends "skins/base.html" %} {% load i18n admin_urls admin_static %} {% load staticfiles %} {% block extra_css %} {% endblock %} {% block navbar %} {% endblock %} {% block content %}

Edit your app

{% if form.errors %}
Please correct the errors below
{% endif %} {% if form.non_field_errors %}
{{ form.non_field_errors|join:", " }}
{% endif %} {% include "form_field.html" with field=form.name %} {% include "form_field.html" with field=form.domain_urls %}
Select template {% for template in form.selected_template %}
{% with "img/"|add:template.choice_label|add:".jpg" as src %} template option {{ forloop.counter }} {% endwith %} {% include "form_field.html" with field=template%}
{% endfor %}
{% if request.user.settings.settings_level == 'expert' %}
Marathon {% include "form_field.html" with field=form.marathon_cmd %}
{% include "form_field.html" with field=form.marathon_cpus %}
{% include "form_field.html" with field=form.marathon_mem %}
{% include "form_field.html" with field=form.marathon_instances %}
{% include "form_field.html" with field=form.marathon_health_check_path %}
{% endif %} {% csrf_token %}

{% block script %} {% endblock %} {% endblock %}