home · contact · privacy
Simplify code with namedtuples and dataclasses.
[plomtask] / templates / process.html
index 85651d75795d8f7fa946601f445bf61c9c584db2..f8f7baf1eefff07564c49d124c4d7b771acb587d 100644 (file)
@@ -86,7 +86,7 @@ add enables: <input name="enables" list="condition_candidates" autocomplete="off
 add disables: <input name="disables" list="condition_candidates" autocomplete="off" />
 <h4>steps</h4>
 <table>
-{% for step_id, step_node in steps.items() %}
+{% for step_node in steps %}
 {{ step_with_steps(step_id, step_node, 0) }}
 {% endfor %}
 </table>