deb-horizon/openstack_dashboard/test/test_panels/another_panel/panel.py
Janet Yu c3864ab35c Make sure dashboard has a default panel group
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
2015-11-02 17:27:16 +00:00

19 lines
686 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.
import horizon
class AnotherPanel(horizon.Panel):
name = "Another Plugin Panel"
slug = 'another_panel'