Chad Roberts 5aa8b83bc9 Reorganizing cluster panels into tabs
First patch in reorganizing the sahara UI to be more
tab oriented rather than death by a thousand panels.
There are other patches that will complete the work,
 but this patch addresses the cluster-oriented panels
 by moving them under a single panel named Clusters.

Change-Id: Iae4bf4b5127fb29153ec5335070cde7d344e059e
Partial-Implements: bp reduce-number-of-panels
2016-02-15 14:05:35 -05:00

40 lines
1.5 KiB
Python

# 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 _
from horizon import tabs
from sahara_dashboard.content.data_processing.clusters.cluster_templates \
import tabs as cluster_templates_tabs
from sahara_dashboard.content.data_processing.clusters.clusters \
import tabs as clusters_tabs
from sahara_dashboard.content.data_processing.clusters.data_image_registry \
import tabs as data_image_registry_tabs
from sahara_dashboard.content.data_processing.clusters.nodegroup_templates \
import tabs as node_group_templates_tabs
class ClusterTabs(tabs.TabGroup):
slug = "cluster_tabs"
tabs = (clusters_tabs.ClustersTab,
cluster_templates_tabs.ClusterTemplatesTab,
node_group_templates_tabs.NodeGroupTemplatesTab,
data_image_registry_tabs.DataImageRegistryTab,)
sticky = True
class IndexView(tabs.TabbedTableView):
tab_group_class = ClusterTabs
template_name = "clusters/index.html"
page_title = _("Clusters")