{% extends "horizon/common/_modal_form.html" %} {% load i18n %} {% load static %} {% load url from future %} {% block form_id %}import_bundle{% endblock %} {% block form_action %}{% url 'horizon:murano:packages:import_bundle' %}{% endblock %} {% block modal_id %}upload_package_modal{% endblock %} {% block modal-header %}{% trans 'Import Package' %}{% endblock %} {% block modal-body %}
{{ 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 %}

{% trans 'Description:' %}

{% blocktrans %}Bundle Name: Bundle's full name.{% endblocktrans %}

{% blocktrans %}The bundle is going to be installed from {{murano_repo_url}} repository.{% endblocktrans %}

{% trans 'Description:' %}

{% blocktrans %}Bundle URL: HTTP/HTTPS URL of the bundle file.{% endblocktrans %}

{% blocktrans %}Note: You'll have to configure each package installed from this bundle separately.{% endblocktrans %}

{% endblock %} {% block modal-footer %} {% if wizard.steps.next %} {% else %} {% endif %} {% trans 'Cancel' %} {% endblock %}