b285358a96
Themers need an easy way to see how customizations in the new themeing mechanism will affect known bootstrap elements. While DEBUG is True, the developer dashboard will be present in the Horizon nav sidebar. This currently displays the Bootstrap Theme Preview page, and will also be used for Angular widget demos etc in the future. Documentation on SCSS and the preview page are being provided in a separate patch to coordinate with the theming work (https://bugs.launchpad.net/horizon/+bug/1514869) Note: The SECRET_KEY block in settings.py is moved before the enabled files setup, so that importing settings in the enabled file doesn't cause errors. Co-Authored-By: Diana Whitten <hurgleburgler@gmail.com> Implements: blueprint bootstrap-theme-preview Change-Id: I44bc52d4dcfbbdc60a27879e638d78c4b508b2e9
22 lines
749 B
Python
22 lines
749 B
Python
# Copyright 2015 Cisco Systems, Inc.
|
|
#
|
|
# 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.
|
|
|
|
|
|
PANEL = 'theme_preview'
|
|
PANEL_GROUP = 'default'
|
|
PANEL_DASHBOARD = 'developer'
|
|
|
|
ADD_PANEL = \
|
|
'openstack_dashboard.contrib.developer.theme_preview.panel.Preview'
|