From 0ed752a84400e7e95c469ca6c7384d3c6b027c4f Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Wed, 10 Apr 2024 05:59:56 +0200
Subject: [PATCH] From Process template remove now unneeded safeguard against
 endless step trees.

---
 templates/process.html | 2 --
 1 file changed, 2 deletions(-)

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 %}
-- 
2.30.2