horizon/openstack_dashboard/enabled/_2270_admin_group_types_panel.py
manchandavishal 5764aa588c Add volume group-type list/show support for admin panel
This commit allow admin to list/show cinder volume group-type
using horizon dashboard and user can perform the following
table action :
1. group-type-create
2. group-type-delete
3. group-type-update

TODO:
1.group-type-specs support

Partially-Implements blueprint cinder-generic-volume-groups

Change-Id: Iea18913765cda146a0fcae7abe64c999a29cccfe
2019-02-06 18:44:35 +00:00

11 lines
395 B
Python

# The slug of the panel to be added to HORIZON_CONFIG. Required.
PANEL = 'group_types'
# 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.group_types.panel.GroupTypes'