{% extends "administration/base.html" %} {% load i18n %} {% load 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." %}

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