horizon/openstack_dashboard/enabled/_2320_admin_volumes_panel.py
Richard Jones e0b6936178 Refactor Volumes from tabbed panel to stand-alone
This edit unfortunately contains more changes than the others
because it effectively merges a bunch of files under
admin/volumes/*.py

Change-Id: I52f3444a92fc83982a95760673419b4b4d746ad3
Implements: blueprint reorganise-volumes
2017-03-09 18:43:05 +00:00

10 lines
379 B
Python

# The slug of the panel to be added to HORIZON_CONFIG. Required.
PANEL = 'volumes'
# The slug of the dashboard the PANEL associated with. Required.
PANEL_DASHBOARD = 'admin'
# The slug of the panel group the PANEL is associated with.
PANEL_GROUP = 'volumes'
# Python panel class of the PANEL to be added.
ADD_PANEL = 'openstack_dashboard.dashboards.admin.volumes.panel.Volumes'