From: Christian Heller <c.heller@plomlompom.de>
Date: Wed, 10 Apr 2024 03:59:56 +0000 (+0200)
Subject: From Process template remove now unneeded safeguard against endless step trees.
X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/%7B%7B%20web_path%20%7D%7D/static/test?a=commitdiff_plain;h=0ed752a84400e7e95c469ca6c7384d3c6b027c4f;p=plomtask

From Process template remove now unneeded safeguard against endless step trees.
---

diff --git a/templates/process.html b/templates/process.html
index 36bad6e..0a15cc4 100644
--- a/templates/process.html
+++ b/templates/process.html
@@ -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 %}