{% 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' %}
{% for binding in object_list %} {% endfor %}
{% trans 'Order' %} {% trans 'Name' %} {% trans 'Stage Type' %}
{{ binding.order }}
{{ binding.stage.name }}
{% blocktrans with flow=binding.flow %} Bound to {{ flow }}. {% endblocktrans %}
{{ 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 %}