merlin/extensions/enabled/_51_add_hotbuilder_panel.py
Timur Sufiev 7fc50585be Start developing HOT Builder on Merlin
Create basic file structure and use common Django template for both
views. Also rework forms/YAML/Graph divs layout to make it more flexible.

Create draft version of 'Add Resource' panel for HotBuilder - with
resources filtering and a list of all available resources obtained
from server-side Heat API.

Change-Id: Ia2e4f8a63d85d8d5dd7cdd731cc4878836176070
2015-08-05 10:12:03 +00:00

18 lines
673 B
Python

# The name of the panel to be added to HORIZON_CONFIG. Required.
PANEL = 'hotbuilder'
# The name of the dashboard the PANEL associated with. Required.
PANEL_DASHBOARD = 'project'
# The name of the panel group the PANEL is associated with.
PANEL_GROUP = 'orchestration'
ADD_INSTALLED_APPS = ['merlin', 'hotbuilder']
# Python panel class of the PANEL to be added.
ADD_PANEL = 'hotbuilder.panel.HotBuilderPanel'
ADD_ANGULAR_MODULES = ['merlin', 'hotbuilder']
ADD_JS_FILES = ['merlin/js/custom-libs/ui-bootstrap-tpls-0.12.1.js',
'merlin/js/merlin.init.js',
'merlin/js/merlin.templates.js',
'hotbuilder/js/hotbuilder.init.js']