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

{% trans 'Stage Bindings' %}

{% trans "Bind existing Stages to Flows." %}

{% if object_list %}
{% include 'partials/pagination.html' %}
{% regroup object_list by target as grouped_bindings %} {% for flow in grouped_bindings %} {% for binding in flow.list %} {% endfor %} {% endfor %}
{% trans 'Order' %} {% trans 'Name' %} {% trans 'Stage Type' %}
{% blocktrans with slug=flow.grouper.slug %} Flow {{ slug }} {% endblocktrans %}
{{ binding.order }}
{{ binding.target.slug }}
{{ binding.target.name }}
{{ binding.stage.name }}
{{ binding.stage }}
{% trans 'Edit' %} {% trans 'Delete' %}
{% include 'partials/pagination.html' %}
{% else %}

{% trans 'No Flow-Stage Bindings.' %}

{% trans 'Currently no flow-stage bindings exist. Click the button below to create one.' %}
{% trans 'Create' %}
{% endif %}
{% endblock %}