Merge "Move 'Statistics' panel to the 'Deployment' dashboard"

This commit is contained in:
Jenkins 2014-04-23 11:10:02 +00:00 committed by Gerrit Code Review
commit ea9f2b359b
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 %}