
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
8 lines
431 B
HTML
8 lines
431 B
HTML
{% load i18n %}
|
|
|
|
{% if environment %}
|
|
<a href="{% url 'horizon:app-catalog:catalog:deploy' app.id environment.id %}" class="{{ class }}"><i class="fa fa-plus-circle"></i> {% trans "Add to Env" %}</a>
|
|
{% else %}
|
|
<a href="{% url 'horizon:app-catalog:environments:create_environment' %}?next={{ view.current_page_url|urlencode }}" class="{{ class }}"><i class="fa fa-plus-circle"></i> {% trans "Create Env" %}</a>
|
|
{% endif %}
|