Remove "Panel" from navigation elements

"Panel" isn't really needed or helpful in the Navigation.  It should
be removed for consistency with the other dashboard.

Change-Id: I0b7fe66a500cae7bd922bcc81a4c930ba03e3028
Closes-Bug:  #1324661
This commit is contained in:
Doug Fish 2014-05-29 14:20:49 -05:00
parent 2e9091a3cd
commit 0c1779bfad
2 changed files with 3 additions and 3 deletions

View File

@ -311,7 +311,7 @@ class Dashboard(Registry, HorizonComponent):
class SystemPanels(horizon.PanelGroup):
slug = "syspanel"
name = _("System Panel")
name = _("System")
panels = ('overview', 'instances', ...)
class Syspanel(horizon.Dashboard):

View File

@ -19,7 +19,7 @@ import horizon
class SystemPanels(horizon.PanelGroup):
slug = "admin"
name = _("System Panel")
name = _("System")
panels = ('overview', 'metering', 'hypervisors', 'aggregates',
'instances', 'volumes', 'flavors', 'images',
'networks', 'routers', 'info')
@ -27,7 +27,7 @@ class SystemPanels(horizon.PanelGroup):
class IdentityPanels(horizon.PanelGroup):
slug = "identity"
name = _("Identity Panel")
name = _("Identity")
panels = ('domains', 'projects', 'users', 'groups', 'roles')