{# templates/wizard/steps.html #}
{% set current_step_phase = step_phase or '' %} {% set completion_href = completion_url or '' %} {% set completion_label_text = completion_label or _('Continue to Invite') %} {% set default_next_label = _('Next') %} {% set is_pre_phase = phase == 'pre' %} {% set is_last_step = idx == max_idx %} {% set is_pre_final = is_pre_phase and is_last_step and completion_href %}
{% if phase == 'preview' %}
{% if current_step_phase == 'pre' %} {{ _("Before Invitation") }} {% elif current_step_phase == 'post' %} {{ _("After Invitation") }} {% endif %}
{% endif %} {% if max_idx > 0 %}
{{ _("Step") }} {{ idx + 1 }} {{ _("of") }} {{ max_idx + 1 }} {{ ((idx + 1) / (max_idx + 1) * 100) | round | int }}%
{% endif %}
Loading...
{% include "wizard/_content.html" %}