{% extends "horizon/common/_modal_form.html" %} {% load i18n humanize %} {% block form_action %} {% url 'horizon:murano:catalog:add' app_id environment_id do_redirect drop_wm_form %} {% endblock %} {% block form_id %}form_{{ app_id }}{% endblock %} {% block modal_id %}modal_{{ app_id }}{% endblock %} {% block modal-header %} {% trans "Configure Application" %}: {{ service_name }} {% endblock %} {% block steps-list %}
{% endblock %} {% block modal-body %} {% for ext_description in extended_descriptions %}

{{ ext_description }}

{% endfor %}
{{ wizard.management_form }} {% if wizard.form.forms %} {{ wizard.form.management_form }} {% for form in wizard.form.forms %} {{ form }} {% endfor %} {% else %}
{% with form=wizard.form %} {% include "horizon/common/_form_fields.html" %} {% endwith %}
{% endif %}
{% for name, title, description in field_descriptions %}

{% if title %} {{ title }}: {% endif %}

{{ description|linebreaksbr }}

{% endfor %}
{% endblock %} {% block modal-footer %} {{ wizard.form.media }} {% if wizard.steps.next %} {% trans "Next" as next %} {% else %} {% trans "Create" as next %} {% endif %} {% if wizard.steps.index > 0 %} {% else %} {% endif %} {% endblock %}