| 1 |
<ol id="wizard-nav" class="wizard-steps"> |
| 2 |
{% for step in nav %} |
| 3 |
<li class="wizard-step-indicator {{ step.state }}" |
| 4 |
{% if step.state != "pending" %}aria-current="{% if step.state == "active" %}step{% endif %}"{% endif %}> |
| 5 |
<span class="step-number">{{ loop.index }}</span> |
| 6 |
<span class="step-label">{{ step.label }}</span> |
| 7 |
</li> |
| 8 |
{% endfor %} |
| 9 |
</ol> |
| 10 |
|