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

{% trans 'Policy Bindings' %}

{% trans "Bind existing Policies to Models accepting policies." %}

{% if object_list %}
{% include 'partials/pagination.html' %}
{% for pbm in object_list %} {% for binding in pbm.bindings %} {% endfor %} {% endfor %}
{% trans 'Policy' %} {% trans 'Enabled' %} {% trans 'Order' %} {% trans 'Timeout' %}
{{ pbm }} {{ pbm|fieldtype }}
{{ binding.policy }}
{{ binding.policy|fieldtype }}
{{ binding.enabled }}
{{ binding.order }}
{{ binding.timeout }}
{% trans 'Edit' %} {% trans 'Delete' %}
{% include 'partials/pagination.html' %}
{% else %}

{% trans 'No Policy Bindings.' %}

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