{% extends '__layout__.html' %} {% block title %}Admin{% endblock %} {% block head %} {% endblock %} {% block content %}
< Return to User Page

{{userObj.username}} Invite Keys

UserId: {{userObj.id}}

{% for invite in InviteKeys: %} {% endfor %}
ID Key Created Used On Used By
{{invite.id}} {{invite.key}} {{invite.created_at}} UTC {% if invite.used_on != None: %}{{invite.used_on}} UTC{%else%}Unused{%endif%} {% if invite.used_by != None: %} {{invite.user.username}} {% else%} Unused {%endif%}
{% if len(InviteKeys.items) == 0: %}

No Invite Keys found

{%endif%}
Previous

Page {{InviteKeys.page}} of {{InviteKeys.pages}}

Next
{% endblock %}