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

{% trans 'Invitations' %}

{% trans "Create Invitation Links to enroll Users, and optionally force specific attributes of their account." %}

{% if object_list %}
{% include 'partials/pagination.html' %}
{% for invitation in object_list %} {% endfor %}
{% trans 'Expiry' %} {% trans 'Link' %}
{{ invitation.expiry }} {{ invitation.Link }} {% trans 'Delete' %}
{% include 'partials/pagination.html' %}
{% else %}

{% trans 'No Invitations.' %}

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