diff --git a/openstack_dashboard/enabled/_3010_identity_domains_panel.py b/openstack_dashboard/enabled/_3010_identity_domains_panel.py index c22560073..e8aff7caf 100644 --- a/openstack_dashboard/enabled/_3010_identity_domains_panel.py +++ b/openstack_dashboard/enabled/_3010_identity_domains_panel.py @@ -1,9 +1,9 @@ # The slug of the panel to be added to HORIZON_CONFIG. Required. PANEL = 'domains' # The slug of the dashboard the PANEL associated with. Required. -PANEL_GROUP = 'default' -# The slug of the panel group the PANEL is associated with. PANEL_DASHBOARD = 'identity' +# The slug of the panel group the PANEL is associated with. +PANEL_GROUP = 'default' # Python panel class of the PANEL to be added. ADD_PANEL = 'openstack_dashboard.dashboards.identity.domains.panel.Domains' diff --git a/openstack_dashboard/enabled/_3020_identity_projects_panel.py b/openstack_dashboard/enabled/_3020_identity_projects_panel.py index bef72a85f..cd843bc57 100644 --- a/openstack_dashboard/enabled/_3020_identity_projects_panel.py +++ b/openstack_dashboard/enabled/_3020_identity_projects_panel.py @@ -1,9 +1,9 @@ # The slug of the panel to be added to HORIZON_CONFIG. Required. PANEL = 'projects' # The slug of the dashboard the PANEL associated with. Required. -PANEL_GROUP = 'default' -# The slug of the panel group the PANEL is associated with. PANEL_DASHBOARD = 'identity' +# The slug of the panel group the PANEL is associated with. +PANEL_GROUP = 'default' # Python panel class of the PANEL to be added. ADD_PANEL = 'openstack_dashboard.dashboards.identity.projects.panel.Tenants' diff --git a/openstack_dashboard/enabled/_3030_identity_users_panel.py b/openstack_dashboard/enabled/_3030_identity_users_panel.py index 785afe3f3..52b45330d 100644 --- a/openstack_dashboard/enabled/_3030_identity_users_panel.py +++ b/openstack_dashboard/enabled/_3030_identity_users_panel.py @@ -1,9 +1,9 @@ # The slug of the panel to be added to HORIZON_CONFIG. Required. PANEL = 'users' # The slug of the dashboard the PANEL associated with. Required. -PANEL_GROUP = 'default' -# The slug of the panel group the PANEL is associated with. PANEL_DASHBOARD = 'identity' +# The slug of the panel group the PANEL is associated with. +PANEL_GROUP = 'default' # Python panel class of the PANEL to be added. ADD_PANEL = 'openstack_dashboard.dashboards.identity.users.panel.Users' diff --git a/openstack_dashboard/enabled/_3040_identity_groups_panel.py b/openstack_dashboard/enabled/_3040_identity_groups_panel.py index b584ac4e2..cd27e87fb 100644 --- a/openstack_dashboard/enabled/_3040_identity_groups_panel.py +++ b/openstack_dashboard/enabled/_3040_identity_groups_panel.py @@ -1,9 +1,9 @@ # The slug of the panel to be added to HORIZON_CONFIG. Required. PANEL = 'groups' # The slug of the dashboard the PANEL associated with. Required. -PANEL_GROUP = 'default' -# The slug of the panel group the PANEL is associated with. PANEL_DASHBOARD = 'identity' +# The slug of the panel group the PANEL is associated with. +PANEL_GROUP = 'default' # Python panel class of the PANEL to be added. ADD_PANEL = 'openstack_dashboard.dashboards.identity.groups.panel.Groups' diff --git a/openstack_dashboard/enabled/_3050_identity_roles_panel.py b/openstack_dashboard/enabled/_3050_identity_roles_panel.py index 7a055ce72..c029d16a0 100644 --- a/openstack_dashboard/enabled/_3050_identity_roles_panel.py +++ b/openstack_dashboard/enabled/_3050_identity_roles_panel.py @@ -1,9 +1,9 @@ # The slug of the panel to be added to HORIZON_CONFIG. Required. PANEL = 'roles' # The slug of the dashboard the PANEL associated with. Required. -PANEL_GROUP = 'default' -# The slug of the panel group the PANEL is associated with. PANEL_DASHBOARD = 'identity' +# The slug of the panel group the PANEL is associated with. +PANEL_GROUP = 'default' # Python panel class of the PANEL to be added. ADD_PANEL = 'openstack_dashboard.dashboards.identity.roles.panel.Roles'