1d39ac761f
This commit allows admin to list/show cinder volume backups using horizon dashboard and the user can perform the following table action : 1. backup-restore 2. backup-delete 3. update backup-state 4. backup force-delete Implements https://blueprints.launchpad.net/horizon/+spec/add-volume-backups-support-for-admin-panel Change-Id: I2fea140a972eb4bd4f18ad1c83cfa4df58c23f6c
10 lines
380 B
Python
10 lines
380 B
Python
# The slug of the panel to be added to HORIZON_CONFIG. Required.
|
|
PANEL = 'backups'
|
|
# 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.backups.panel.Backups')
|