horizon/openstack_dashboard/enabled/_2260_admin_vg_snapshots.py
manchandavishal 9497a23723 Add volume-group snapshot for admin panel
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
2019-02-15 08:02:31 +00:00

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')