X-Git-Url: https://plomlompom.com/repos/day?a=blobdiff_plain;f=templates%2Fprocess.html;h=10442cfe76bffd5e85788b82e12f184f1ff94b72;hb=12be63c6ef58282cb6b7d5b7bc2eabe8946a1bfc;hp=b55ee0756314fcd746b380cfb46eddf8a7fac202;hpb=34741b65438149b4e02f1e2bb4f8fdba5df5a667;p=plomtask diff --git a/templates/process.html b/templates/process.html index b55ee07..10442cf 100644 --- a/templates/process.html +++ b/templates/process.html @@ -1,5 +1,7 @@ {% extends 'base.html' %} + + {% macro step_with_steps(step_id, step_node, indent) %} @@ -7,7 +9,6 @@ {% if step_node.is_explicit %} - {% endif %} @@ -20,7 +21,7 @@ {% if step_node.is_explicit %} -add step: +add: {% endif %} @@ -31,13 +32,31 @@ add step: -title: -description: -default effort: -

conditions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
title
default effort
description
conditions {% for condition in process.conditions %} @@ -50,18 +69,18 @@ default effort: {% endfor %}
-add condition: - -{% for condition_candidate in condition_candidates %} - -{% endfor %} - -

fulfills

+add: +
enables -{% for condition in process.fulfills %} +{% for condition in process.enables %}
- + {{condition.title.newest|e}} @@ -69,13 +88,18 @@ add condition: {% endfor %}
-add fulfills: -

conditions

+add: +
disables -{% for condition in process.undoes %} +{% for condition in process.disables %} + + + + + + + + + + + + +
- + {{condition.title.newest|e}} @@ -83,26 +107,46 @@ add fulfills: -

steps

+add: +
steps {% for step_id, step_node in steps.items() %} {{ step_with_steps(step_id, step_node, 0) }} {% endfor %}
-add step: +add: +
step of +{% for owner in owners %} +{{owner.title.newest|e}}
+{% endfor %} +
+ +{% for condition_candidate in condition_candidates %} + +{% endfor %} + {% for candidate in step_candidates %} {% endfor %} -

save

- + + +
+ +
-

step of

- {% endblock %}