9497a23723
This commit allow admin to list/show and delete volume-group snapshots using horizon dashboard. Partially-Implements blueprint cinder-generic-volume-groups Change-Id: If00d156a7a56ed699425b35ac60314c3a8cd049c
11 lines
413 B
Python
11 lines
413 B
Python
# The slug of the panel to be added to HORIZON_CONFIG. Required.
|
|
PANEL = 'vg_snapshots'
|
|
# 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 = 'volume'
|
|
|
|
# Python panel class of the PANEL to be added.
|
|
ADD_PANEL = ('openstack_dashboard.dashboards.admin.vg_snapshots.panel.'
|
|
'GroupSnapshots')
|