9ed4acd4ff
A developer panel that allows you to edit schema forms in real-time, with multiple examples. Also, you can view that same form in a standard Horizon modal to preview what the form will look like. Based on http://schemaform.io/examples/bootstrap-example.html Also fixes some bugs in the schema-form implementation: - Arrays cleaned up and fixed - Tab arrays cleaned up - Improved modal form to use schema.title if available Co-Authored-By: Rob Cresswell <robert.cresswell@outlook.com> Change-Id: Ia75a18d4c0c064ae618ee923cd6d602b1ef6e66e
20 lines
726 B
Python
20 lines
726 B
Python
# (c) Copyright 2016 Hewlett Packard Enterprise Development Company LP
|
|
#
|
|
# 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.views import generic
|
|
|
|
|
|
class IndexView(generic.TemplateView):
|
|
template_name = 'angular.html'
|