Move 'Statistics' panel to the 'Deployment' dashboard

'Deployment' dashboard is renamed to 'Application Catalog', while
'Application Catalog' panel is renamed to 'Applications'.

Implements: blueprint move-statistics-panel-to-app-catalog
Partial-Bug: #1310969
Closes-Bug: #1308116
Change-Id: Id49bd00c0ed8d76407b6ddcbca9603a57dbbf9f1
This commit is contained in:
Timur Sufiev 2014-04-22 16:40:09 +04:00
parent 3269374769
commit 23d7cbf79a
3 changed files with 6 additions and 6 deletions

View File

@ -18,7 +18,7 @@ from muranodashboard import dashboard
class AppCatalog(horizon.Panel):
name = _('Application Catalog')
name = _('Applications')
slug = 'catalog'

View File

@ -20,14 +20,14 @@ assert exceptions
class DeployPanels(horizon.PanelGroup):
slug = "deployment_group"
name = _("Deployment")
panels = ("environments", "catalog")
name = _("Application Catalog")
panels = ("environments", "catalog", "stats")
class ManagePanels(horizon.PanelGroup):
slug = "manage_metadata"
name = _("Manage")
panels = ("images", "packages", "stats")
panels = ("images", "packages")
class Murano(horizon.Dashboard):

View File

@ -3,13 +3,13 @@
{% load static %}
{% load url from future %}
{% block title %}{% trans "Environments" %}{% endblock %}
{% block title %}{% trans "Applications" %}{% endblock %}
{% block page_header %}
<link rel="stylesheet" href="{% static 'muranodashboard/css/catalog.css' %}">
<link rel="stylesheet" href="{% static 'muranodashboard/css/font-awesome.min.css' %}">
{% include "horizon/common/_page_header.html" with title=_("Application Catalog") %}
{% include "horizon/common/_page_header.html" with title=_("Applications") %}
{% endblock page_header %}
{% block js %}