From 214aeb0f2e29712518dc776b0713bcdbb8945a2f Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Sat, 8 Jun 2024 15:54:22 +0200 Subject: [PATCH] Improve Process editing template layout. --- templates/_macros.html | 4 +++- templates/process.html | 51 +++++++++++++++++++++++++++++++++++------- 2 files changed, 46 insertions(+), 9 deletions(-) diff --git a/templates/_macros.html b/templates/_macros.html index cb1bb45..1439591 100644 --- a/templates/_macros.html +++ b/templates/_macros.html @@ -18,6 +18,7 @@ {% macro simple_checkbox_table(title, items, type_name, list_name, add_string="add", historical=false) %} +{% if items|length > 0 %} {% for item in items %} @@ -30,7 +31,8 @@ {% endfor %}
-{{add_string}}: +{% endif %} +{{add_string}}: {% endmacro %} diff --git a/templates/process.html b/templates/process.html index c765ca7..064e83d 100644 --- a/templates/process.html +++ b/templates/process.html @@ -4,9 +4,23 @@ {% block css %} -input[name="title"] { +input[type="text"] { width: 100em; } +details > summary::after { + content: '[+]'; +} +details summary { + list-style: none; +} +details[open] > summary::after { + content: '[-]'; +} +table.main > tbody > tr > td, table.main > tbody > tr > th { + border-bottom: 0.1em solid #bbbbbb; + padding-top: 0.5em; + padding-bottom: 0.5em; +} {% endblock %} @@ -21,19 +35,34 @@ input[name="title"] { {% endif %} -{% for i in range(indent) %}+{%endfor %} + +{% if step_node.is_explicit and not step_node.seen %} + +
+ +{% else %} + +{% endif %} + +{% for i in range(indent) %}+{%endfor %} {% if step_node.is_suppressed %}{% endif %} {% if step_node.seen %} ({{step_node.process.title.newest|e}}) {% else %} {{step_node.process.title.newest|e}} {% endif %} -{% if step_node.is_suppressed %}{% endif %} +{% if step_node.is_suppressed %}{% endif %} + + +{% if step_node.is_explicit and not step_node.seen %} + +
add sub-step:
+
+{% endif %} + -{% if step_node.is_explicit %} -add sub-step: -{% elif not step_node.seen %} +{% if (not step_node.is_explicit) and (not step_node.seen) %} suppress {% endif %} @@ -48,9 +77,15 @@ add sub-step: {% if is_new %}NEW {% endif %}process +

+{% if is_new %} +add NEW process +{% else %} +edit process of ID {{process.id_}} +{% endif %} +

- +
-- 2.30.2
title