{% extends LOWBONO_TEMPLATE_BASE|default:"lowbono/base.html" %} {% load django_bootstrap5 %} {% load crispy_forms_tags %} {% load i18n %} {% block content %}
{% bootstrap_messages %}

{{ step.heading | safe }}

{% if step_alert %}

{{ step_alert.body | safe }}

{% endif %} {% if step.before %}

{{ step.before.body | safe }}

{% endif %} {% if form %}
{% csrf_token %} {% crispy form %} {% if alert %} {% bootstrap_alert alert|safe %} {% endif %} {% if step.submit %} {% bootstrap_button button_type="submit" content=step.submit %} {% endif %} {% if step.switch %} {% bootstrap_button step.switch button_class="btn-secondary" button_type="link" href=step.switch_url %} {% endif %}
{% endif %}
{% if step.prev %} {% bootstrap_button step.prev button_class="btn-secondary" button_type="link" href=prev_url %} {% endif %} {% if step.next %} {% bootstrap_button step.next button_type="link" href=next_url %} {% endif %} {% if step.skip %} {% bootstrap_button step.skip button_class="btn-secondary" button_type="link" href=skip_url %} {% endif %}
{% if step.after %} {% if step.after.heading %}

{{ step.after.heading | safe }}

{% endif %} {% if step.after.body %}

{{ step.after.body | safe }}

{% endif %} {% endif %}
{% endblock %}