{% macro progress_indicator(length, active, label=null) %}
{{ label or _("Step {active} of {total}").format(active=active, total=length) }}
{% for step in range(length) %}
{% endfor %}
{% endmacro %}