9af2dde13c
The data processing panels were being displayed in a non-optimal order. This patch fixes that by restoring the same order that existed in the old repository. Change-Id: I1cdc63dae5a37171c4a56a6b196f4d25ebfbe92c Closes-Bug: #1350991
89 lines
2.4 KiB
Python
89 lines
2.4 KiB
Python
# Copyright 2012 Nebula, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
import horizon
|
|
|
|
|
|
class BasePanels(horizon.PanelGroup):
|
|
slug = "compute"
|
|
name = _("Compute")
|
|
panels = ('overview',
|
|
'instances',
|
|
'volumes',
|
|
'images',
|
|
'access_and_security',)
|
|
|
|
|
|
class NetworkPanels(horizon.PanelGroup):
|
|
slug = "network"
|
|
name = _("Network")
|
|
panels = ('network_topology',
|
|
'networks',
|
|
'routers',
|
|
'loadbalancers',
|
|
'firewalls',
|
|
'vpn',)
|
|
|
|
|
|
class ObjectStorePanels(horizon.PanelGroup):
|
|
slug = "object_store"
|
|
name = _("Object Store")
|
|
panels = ('containers',)
|
|
|
|
|
|
class OrchestrationPanels(horizon.PanelGroup):
|
|
name = _("Orchestration")
|
|
slug = "orchestration"
|
|
panels = ('stacks',)
|
|
|
|
|
|
class DatabasePanels(horizon.PanelGroup):
|
|
name = _("Database")
|
|
slug = "database"
|
|
panels = ('databases',
|
|
'database_backups',)
|
|
|
|
|
|
class DataProcessingPanels(horizon.PanelGroup):
|
|
name = _("Data Processing")
|
|
slug = "data_processing"
|
|
panels = ('data_processing.clusters',
|
|
'data_processing.cluster_templates',
|
|
'data_processing.nodegroup_templates',
|
|
'data_processing.job_executions',
|
|
'data_processing.jobs',
|
|
'data_processing.job_binaries',
|
|
'data_processing.data_sources',
|
|
'data_processing.data_image_registry',
|
|
'data_processing.data_plugins',)
|
|
|
|
|
|
class Project(horizon.Dashboard):
|
|
name = _("Project")
|
|
slug = "project"
|
|
panels = (
|
|
BasePanels,
|
|
NetworkPanels,
|
|
ObjectStorePanels,
|
|
OrchestrationPanels,
|
|
DatabasePanels,
|
|
DataProcessingPanels,)
|
|
default_panel = 'overview'
|
|
supports_tenants = True
|
|
|
|
|
|
horizon.register(Project)
|