home · contact · privacy
From Process template remove now unneeded safeguard against endless step trees.
authorChristian Heller <c.heller@plomlompom.de>
Wed, 10 Apr 2024 03:59:56 +0000 (05:59 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Wed, 10 Apr 2024 03:59:56 +0000 (05:59 +0200)
templates/process.html

index 36bad6eac5752b5827a8bdddb224e2259e7f4982..0a15cc4052a8d61bf1b2d624a90cfbfc7d86a9e8 100644 (file)
@@ -19,11 +19,9 @@ add step: <input name="new_step_to_{{step_id}}" list="candidates" autocomplete="
 {% endif %}
 </td>
 </tr>
-{% 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 %}