{% extends "base.html" %} {% from "components/ui.html" import page_header %} {% block title %}{{ wizard_title }} - {{ app_name }}{% endblock %} {% block content %} {% set breadcrumbs = [ {'text': _('Integrations'), 'url': url_for('integrations.list_integrations')}, {'text': display_name, 'url': url_for('integrations.manage_integration', provider=provider)}, {'text': _('Setup Wizard')} ] %} {{ page_header( icon_class='fas fa-magic', title_text=wizard_title, subtitle_text=wizard_subtitle, breadcrumbs=breadcrumbs ) }}
{% for step in range(1, total_steps + 1) %}
{{ step }}
{% if not loop.last %}
{% endif %} {% endfor %}
{% block wizard_steps %} {% endblock %}
{{ _('Cancel') }}
{% block wizard_js %} {% endblock %} {% endblock %}