{% extends "administration/base.html" %} {% load i18n %} {% load authentik_utils %} {% block content %}

{% trans 'Stages' %}

{% trans "Stages are single steps of a Flow that a user is guided through." %}

{% if object_list %}
{% include 'partials/toolbar_search.html' %}
{% include 'partials/pagination.html' %}
{% for stage in object_list %} {% endfor %}
{% trans 'Name' %} {% trans 'Flows' %}
{{ stage.name }}
{{ stage|verbose_name }}
    {% for flow in stage.flow_set.all %}
  • {{ flow.slug }}<
  • {% empty %}
  • -
  • {% endfor %}
{% trans 'Edit' %}
{% trans 'Delete' %}
{% include 'partials/pagination.html' %}
{% else %}
{% include 'partials/toolbar_search.html' %}

{% trans 'No Stages.' %}

{% if request.GET.search != "" %} {% trans "Your search query doesn't match any stages." %} {% else %} {% trans 'Currently no stages exist. Click the button below to create one.' %} {% endif %}
{% endif %}
{% endblock %}