X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;ds=sidebyside;f=templates%2Fprocess.html;h=2a577152720c2101353767182f443d9d7fd11874;hb=HEAD;hp=1743936f2eb3bca793ff70faf1e0edfd898146f2;hpb=8310bdb39e4f3cba5ac90be1ec57b3df633f436b;p=plomtask diff --git a/templates/process.html b/templates/process.html index 1743936..7bb503e 100644 --- a/templates/process.html +++ b/templates/process.html @@ -1,13 +1,143 @@ -{% extends 'base.html' %} +{% extends '_base.html' %} +{% import '_macros.html' as macros %} + + + +{% block css %} +details > summary::after { + content: '[+]'; +} +details summary { + list-style: none; +} +details[open] > summary::after { + content: '[-]'; +} +{% endblock %} + + + +{% macro step_with_steps(step_id, step_node, indent) %} + + + +{% if step_node.is_explicit %} + + + +{% endif %} + + +{% 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_explicit and not step_node.seen %} + +
add sub-step:
+
+{% endif %} + + +{% if (not step_node.is_explicit) and (not step_node.seen) %} + + suppress + +{% endif %} + +{% if step_node.is_explicit or not step_node.seen %} +{% for substep_id, substep in step_node.steps.items() %} +{{ step_with_steps(substep_id, substep, indent+1) }} +{% endfor %} +{% endif %} +{% endmacro %} + + {% block content %} -

Process

+

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

-title: -description: -default effort: - -
-{% endblock %} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
title{% if process.id_ %} [history]{% endif %}
effort{% if process.id_ %} [history]{% endif %}
description
{% if process.id_ %} [history]{% endif %}
calendarize +
conditions{{ macros.simple_checkbox_table("conditions", process.conditions, "condition", "condition_candidates") }}
blockers{{ macros.simple_checkbox_table("blockers", process.blockers, "condition", "condition_candidates") }}
enables{{ macros.simple_checkbox_table("enables", process.enables, "condition", "condition_candidates") }}
disables{{ macros.simple_checkbox_table("disables", process.disables, "condition", "condition_candidates") }}
steps +{% if steps %} + +{% for step_id, step_node in steps.items() %} +{{ step_with_steps(step_id, step_node, 0) }} +{% endfor %} +
+{% endif %} +add: +
step of{{ macros.simple_checkbox_table("step_of", owners, "process", "process_candidates") }}
todos +{{n_todos}}
+
+{{ macros.edit_buttons() }} + +{{ macros.datalist_of_titles("condition_candidates", condition_candidates) }} +{{ macros.datalist_of_titles("process_candidates", process_candidates) }} +{% endblock %}