summaryrefslogtreecommitdiff
path: root/openstack_dashboard/dashboards/infrastructure/resource_management/resource_classes/tabs.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstack_dashboard/dashboards/infrastructure/resource_management/resource_classes/tabs.py')
-rw-r--r--openstack_dashboard/dashboards/infrastructure/resource_management/resource_classes/tabs.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/openstack_dashboard/dashboards/infrastructure/resource_management/resource_classes/tabs.py b/openstack_dashboard/dashboards/infrastructure/resource_management/resource_classes/tabs.py
index 650d7761..0909e064 100644
--- a/openstack_dashboard/dashboards/infrastructure/resource_management/resource_classes/tabs.py
+++ b/openstack_dashboard/dashboards/infrastructure/resource_management/resource_classes/tabs.py
@@ -17,8 +17,7 @@ from django.utils.translation import ugettext_lazy as _
from horizon import exceptions
from horizon import tabs
-from tables import (ResourceClassDetailRacksTable,
- ResourceClassDetailFlavorsTable)
+from tables import ResourceClassDetailFlavorsTable, RacksTable
class OverviewTab(tabs.Tab):
@@ -33,7 +32,7 @@ class OverviewTab(tabs.Tab):
class RacksTab(tabs.TableTab):
- table_classes = (ResourceClassDetailRacksTable,)
+ table_classes = (RacksTable,)
name = _("Racks")
slug = "racks"
template_name = ("infrastructure/resource_management/resource_classes/"