c3864ab35c
According to the Horizon documentation for Settings and Configuration, for a plugin panel, 'If you want the panel to show up without a panel group, use the panel group “default”'. In some cases, plugin panels were getting put under the panel group "Other" instead. This is because the default panel group wasn't getting created during plugin panel processing when the panel's dashboard class already had some panel groups defined. Fix this by making sure a default panel group is created in each dashboard. Change-Id: I98064c434326aabec16b5d1631e360643609ed40 Closes-Bug: 1403094
22 lines
806 B
Python
22 lines
806 B
Python
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from django.conf.urls import patterns
|
|
from django.conf.urls import url
|
|
|
|
from openstack_dashboard.test.test_panels.another_panel import views
|
|
|
|
urlpatterns = patterns(
|
|
'',
|
|
url(r'^$', views.IndexView.as_view(), name='index'),
|
|
)
|