Kirill Zaitsev 67223ea1f0 Rename 'murano' dashboard to 'app-catalog'
Before this commit murano used 'murano' as the name of it's dashboard.
This is too specific and contradicts with general practice of naming
dashboards after the names of the service.
This also prevents us from re-using the same dashboard in
murano-dashboard and app-catalog-ui

Targets bp: catalog-dashboard-reorg

Change-Id: I3df3865f6bf82626325e66120c408552260c7e2b
2016-09-06 12:46:46 +03:00

21 lines
810 B
HTML

{% extends 'horizon/common/_modal_form.html' %}
{% load i18n %}
{% block form_id %}{% endblock %}
{% block form_action %}{% url 'horizon:app-catalog:packages:modify' app_id %}{% endblock %}
{% block modal-header %}{% trans "Modify Package" %}{% endblock %}
{% block modal_id %}modify_package_modal{% endblock %}
{% block modal-body-right %}
{% include 'packages/_package_params.html' %}
{% if type != 'Library' %}
<p><strong>{% trans "Categories" %}. </strong>{% trans "Select one or more categories for a package." %}</p>
{% endif %}
{% endblock %}
{% block modal-footer %}
<a href="{% url 'horizon:app-catalog:packages:index' %}" class="btn btn-default cancel">{% trans "Cancel" %}</a>
<input type='submit' class='btn btn-primary' value='{% trans "Update" %}' />
{% endblock %}