horizon/openstack_dashboard/enabled/_2150_admin_flavors_panel.py
Akihiro Motoki 8ae967ac92 Make enabled filenames consistent
Previously _2150_admin_flavor_panel.py used double underscores,
but there is no reason to use double underscores.
This commit makes the enabled filenames consistent.

Change-Id: I9c2de7075c715c1c41798c098e97560c14a554be
2017-12-27 10:13:32 +00:00

10 lines
379 B
Python

# The slug of the panel to be added to HORIZON_CONFIG. Required.
PANEL = 'flavors'
# 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 = 'compute'
# Python panel class of the PANEL to be added.
ADD_PANEL = 'openstack_dashboard.dashboards.admin.flavors.panel.Flavors'