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

Edit your app

{% with form=form.controller_form %}
{% 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.description %}
{% include "form_field.html" with field=form.domain_urls %}
{% include "form_field.html" with field=form.docker_image %}
{% include "form_field.html" with field=form.port %}
{% include "form_field.html" with field=form.volume_needed %}
{% include "form_field.html" with field=form.volume_path %}
{% endwith %}
Environment Variables {{ form.env_formset.management_form }} {{ form.non_form_errors }} {% for form in form.env_formset %} {{ form.id }}
{% include "form_field.html" with field=form.key %}
{% include "form_field.html" with field=form.value %}
{% endfor %}
Application Labels {{ form.label_formset.management_form }} {{ form.non_form_errors }} {% for form in form.label_formset %} {{ form.id }}
{% include "form_field.html" with field=form.name %}
{% include "form_field.html" with field=form.value %}
{% endfor %}
{% with form=form.controller_form %}
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 %}
{% endwith %} {% with form=form.controller_form %}
Organization
{% include "form_field.html" with field=form.organization %}
{% endwith %} {% with form=form.controller_form %}
Webhooks
{% include "form_errors.html" with errors=field.errors %}
{% endwith %} {% csrf_token %}

{% endblock %}