aa669f0d02
Enable admin panel for trunks. For the admin panel the delete action and the readonly operations are enabled (table view and details view). Change-Id: Icfc01612cc60798e4b0ff7379a9c8b83d3f1d60b Implements: blueprint neutron-trunk-ui
10 lines
376 B
Python
10 lines
376 B
Python
# The slug of the panel to be added to HORIZON_CONFIG. Required.
|
|
PANEL = 'trunks'
|
|
# 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 = 'network'
|
|
|
|
# Python panel class of the PANEL to be added.
|
|
ADD_PANEL = 'openstack_dashboard.dashboards.admin.trunks.panel.Trunks'
|