{# templates/settings/wizard/index.html #}

{{ _("Wizard Steps") }}

{{ _("Manage your wizard steps and bundles for user onboarding") }}

{% set is_default = True %} {% include 'settings/wizard/_sub_nav.html' with context %}
{% if not grouped %}

{{ _("No wizard steps found") }}

{{ _("Get started by creating your first wizard step") }}

{% endif %} {% for server, steps in grouped.items() %}

{{ server|capitalize }} {{ _("Server") }}

{{ steps|length }} {{ _("steps configured") }}

{{ _("Preview") }}
    {% for step in steps %}
  1. {{ step.title or _("Untitled Step") }}

    {{ _("Step") }} #{{ loop.index }}

  2. {% endfor %}
{% endfor %}