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

{% trans 'Flows' %}

{% trans "Flows describe a chain of Stages to authenticate, enroll or recover a user. Stages are chosen based on policies applied to them." %}

{% if object_list %}
{% include 'partials/pagination.html' %}
{% for flow in object_list %} {% endfor %}
{% trans 'Name' %} {% trans 'Designation' %} {% trans 'Stages' %} {% trans 'Policies' %}
{{ flow.name }}
{{ flow.slug }}
{{ flow.designation }} {{ flow.stages.all|length }} {{ flow.policies.all|length }} {% trans 'Edit' %} {% trans 'Delete' %}
{% include 'partials/pagination.html' %}
{% else %}

{% trans 'No Flows.' %}

{% trans 'Currently no flows exist. Click the button below to create one.' %}
{% trans 'Create' %}
{% endif %}
{% endblock %}