{% for step in steps %}
{% if step.status == 'done' %}
✓
{% elif step.status == 'running' %}
●
{% else %}
○
{% endif %}
{{ step.label }}
{% if step.detail %}{{ step.detail }}{% endif %}
{% endfor %}
{% if progress_current and progress_total %}
{{ progress_current }}/{{ progress_total }}
{% endif %}
{% if error %}
{% endif %}