X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;ds=sidebyside;f=templates%2Fprocess.html;h=55eeb52589fae2c97d1585b64624cb36eefab456;hb=c6bc1fddcf12ae9523cf5b1b595638c762677c52;hp=0f0f0c5a49e5bef9db9b9eb558f7d416afedd4fa;hpb=b96a5c72c2decc56ca1706e4929e2e58e4b7b156;p=plomtask diff --git a/templates/process.html b/templates/process.html index 0f0f0c5..55eeb52 100644 --- a/templates/process.html +++ b/templates/process.html @@ -1,18 +1,27 @@ {% extends 'base.html' %} -{% macro process_with_children(node, indent) %} +{% macro process_with_steps(step_id, step_node, indent) %} - + +{% if step_node.is_explicit %} + + + +{% endif %} + +{% for i in range(indent) %}+{%endfor %} +{{step_node.process.title.newest|e}} -{% for i in range(indent) %}+{%endfor %} -{{node.process.title.newest|e}} +add step: -{% for child in node.children %} -{{ process_with_children(child, indent+1) }} +{% if indent < 5 %} +{% for substep_id, substep in step_node.steps.items() %} +{{ process_with_steps(substep_id, substep, indent+1) }} {% endfor %} +{% endif %} {% endmacro %} {% block content %} @@ -22,11 +31,11 @@ title: description: default effort: -{% for child in children %} -{{ process_with_children(child, 0) }} +{% for step_id, step_node in steps.items() %} +{{ process_with_steps(step_id, step_node, 0) }} {% endfor %}
-add child: +add step: {% for candidate in candidates %}