Open
Description
A StepsHelper
must be made iterable to create useful wizard steps graphics, e.g. in Django (any jinja2 template too):
<ul class="steps steps-counter">
{% for step in wizard.steps %}
<li class="step-item{% if wizard.steps.current == step %} active{% endif %}">{{ step }}</li>
{% endfor %}
</ul>
You need to iter over the wizard steps to do that, but the StepsHelper
class is not iterable.
I may add a simple PR to do that?
Metadata
Assignees
Labels
No labels