+
+ {{ loop.index }}
+ {{ step.title }}
+
+ {% if step.instructions %}
+
{{ step.instructions }}
+ {% endif %}
+ {% if step.completed_at %}
+
+ Completed {{ step.completed_at.strftime('%Y-%m-%d %H:%M') }}
+
+ {% endif %}
+ {% if step.notes %}
+
{{ step.notes }}
+ {% endif %}
+ {% if step.status != 'completed' %}
+
+ {% endif %}
+
+ {% if step_tasks.get(step.id|string) %}
+
+ {% for task in step_tasks[step.id|string] %}
+
+ {% endfor %}
+
+ {% endif %}
+