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

{% trans "Bundle Name" %}: {% trans "Bundle's full name."%}

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

{% trans "Description" %}:

{% trans "Bundle URL" %}: {% trans "HTTP/HTTPS URL of the bundle file."%}

{% trans "Note" %}: {% trans "You'll have to configure each package installed from this bundle separately." %}
{% trans "If packages depend upon other packages and/or require specific glance images, those are going to be installed with them from murano repository." %}

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