{% extends "settings/base.html" %} {% load activity_tags %} {% block subtitle %}Invites{% endblock %} {% block content %}
Create New
{% for invite in page_obj %} {{ invite.token }} {% if invite.expires %} Expires in {{ invite.expires|timeuntil }} {% if invite.notes %}|{% endif %} {% endif %} {% if invite.notes %} {{ invite.notes }} {% endif %} {% empty %}

There are no unused invites.

{% endfor %}
{% if page_obj.has_previous %} Previous Page {% endif %} {% if page_obj.has_next %} Next Page {% endif %}
{% endblock %}