{% load i18n %}

{% trans 'Manage Tokens' %}

{% trans "Tokens can be used to access passbook's API." %}

{% if object_list %}
{% include 'partials/toolbar_search.html' %} {% include 'partials/pagination.html' %}
{% for token in object_list %} {% endfor %}
{% trans 'Identifier' %} {% trans 'Expires?' %} {% trans 'Expiry Date' %} {% trans 'Description' %}
{{ token.identifier }}
{{ token.expiring|yesno:"Yes,No" }} {% if not token.expiring %} - {% else %} {{ token.expires }} {% endif %} {{ token.description }} {% trans 'Edit' %} {% trans 'Delete' %}
{% include 'partials/pagination.html' %}
{% else %}

{% trans 'No Tokens.' %}

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