{% trans "Stages are single steps of a Flow that a user is guided through." %}
{% if object_list %}
{% include 'partials/toolbar_search.html' %}
{% for type, name in types.items %}
{% endfor %}
{% include 'partials/pagination.html' %}
{% trans 'Name' %}
{% trans 'Flows' %}
{% for stage in object_list %}
{{ stage.name }}
{{ stage|verbose_name }}
{% for flow in stage.flow_set.all %}
{{ flow.slug }}<
{% empty %}
-
{% endfor %}
{% trans 'Edit' %}
{% trans 'Delete' %}
{% get_links stage as links %}
{% for name, href in links.items %}
{% trans name %}
{% endfor %}
{% endfor %}
{% 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 %}