{% extends '__layout__.html' %} {% block title %}Invite Keys{% endblock %} {% block head %} {% endblock %} {% block content %}

Invite Keys

Note: It is not recommended to give away your invite key to strangers as you may be responsible for their actions.

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %} {% if category == 'error': %}
{{ message }}
{% endif %} {% if category == 'success': %}
{{ message }}
{% endif %} {% endfor %}
{% endif %} {% endwith %} {% for key in createdKeys.items %} {%endfor%}
Created Key Used By Used On
{{key.created_at.strftime("%d/%m/%Y")}} {{key.key}} {% if key.used_by %} {{key.user.username}} {{key.user.username}} {% endif %} {% if key.used_on %}{{key.used_on.strftime("%d/%m/%Y")}}{%else%}None{%endif%}
{% if len(createdKeys.items) == 0 %}

No results found

{%endif%}
Previous

Page {{createdKeys.page}} of {{createdKeys.pages}}

Next
{%endblock%}