* code view is now a public template
* emptyform is now a public form
* tasks overview screen
* add state info field
* add iso filter to time fields
* add workflow link
* refactored detail layout
* tasks main screen
* main table now has result and
published columns which use the
code view template
Screenshots:
http://pasteboard.co/1T2U8Ers.png
http://pasteboard.co/1T2Son9w.png
http://pasteboard.co/1Uj47Rvk.png
Partially implements blueprint: tasks-screen-improvments
Partially implements blueprint: mistral-dashboard-executions-screen
Change-Id: I8978746f645949aed174f893a5195073f156e24d
21 lines
662 B
Python
21 lines
662 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 horizon import forms
|
|
|
|
|
|
class EmptyForm(forms.SelfHandlingForm):
|
|
|
|
def handle(self, request, data):
|
|
pass
|