{% extends "settings/base.html" %} {% load activity_tags %} {% block subtitle %}Invites{% endblock %} {% block content %}
Create New
{% for invite in page_obj %} {% empty %} {% endfor %}
{{ invite.token }} {% if invite.note %} {{ invite.note }} {% endif %} {% if invite.expires %} {% if invite.valid %} {{ invite.expires|timeuntil }} until expiry {% else %} Expired {% endif %} {% endif %} {% if invite.uses %} {{ invite.uses }} {% else %} Infinite {% endif %} use{{ invite.uses|pluralize }} left
There are no invites yet.
{% include "admin/_pagination.html" with nouns="invite,invites" %} {% endblock %}