2023-05-04 04:42:37 +00:00
|
|
|
{% extends "admin/base_main.html" %}
|
2022-12-20 08:51:53 +00:00
|
|
|
{% load activity_tags %}
|
2022-11-18 07:09:04 +00:00
|
|
|
|
|
|
|
{% block subtitle %}Invites{% endblock %}
|
|
|
|
|
2023-05-04 04:42:37 +00:00
|
|
|
{% block settings_content %}
|
2023-01-11 03:31:50 +00:00
|
|
|
<div class="view-options">
|
|
|
|
<span class="spacer"></span>
|
|
|
|
<a href="{% url "admin_invite_create" %}" class="button">Create New</a>
|
|
|
|
</div>
|
|
|
|
<table class="items">
|
2022-12-20 08:51:53 +00:00
|
|
|
{% for invite in page_obj %}
|
2023-01-11 03:31:50 +00:00
|
|
|
<tr>
|
|
|
|
<td class="icon">
|
2023-06-14 17:15:29 +00:00
|
|
|
<a href="{{ invite.urls.admin_view }}?page={{ page_obj.number }}" class="overlay"></a>
|
2023-01-11 03:31:50 +00:00
|
|
|
<i class="fa-solid fa-envelope"></i>
|
|
|
|
</td>
|
|
|
|
<td class="name">
|
2023-06-14 17:15:29 +00:00
|
|
|
<a href="{{ invite.urls.admin_view }}?page={{ page_obj.number }}" class="overlay"></a>
|
2022-12-20 08:51:53 +00:00
|
|
|
{{ invite.token }}
|
|
|
|
<small>
|
2022-12-26 16:42:35 +00:00
|
|
|
{% if invite.note %}
|
|
|
|
{{ invite.note }}
|
2022-12-20 08:51:53 +00:00
|
|
|
{% endif %}
|
|
|
|
</small>
|
2023-01-11 03:31:50 +00:00
|
|
|
</td>
|
|
|
|
<td class="stat">
|
|
|
|
{% if invite.expires %}
|
|
|
|
{% if invite.valid %}
|
|
|
|
{{ invite.expires|timeuntil }}
|
|
|
|
<small>until expiry</small>
|
|
|
|
{% else %}
|
|
|
|
<span class="bad">Expired</span>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
2023-01-14 17:32:48 +00:00
|
|
|
</td>
|
2023-01-11 03:31:50 +00:00
|
|
|
<td class="stat">
|
2022-12-22 07:03:21 +00:00
|
|
|
{% if invite.uses %}
|
2023-01-11 03:31:50 +00:00
|
|
|
{{ invite.uses }}
|
2022-12-22 07:03:21 +00:00
|
|
|
{% else %}
|
2023-01-11 03:31:50 +00:00
|
|
|
Infinite
|
2022-12-22 07:03:21 +00:00
|
|
|
{% endif %}
|
2023-01-11 03:31:50 +00:00
|
|
|
<small>use{{ invite.uses|pluralize }} left</small>
|
2023-01-14 17:32:48 +00:00
|
|
|
</td>
|
2023-01-11 03:31:50 +00:00
|
|
|
</tr>
|
2022-12-20 08:51:53 +00:00
|
|
|
{% empty %}
|
2023-01-11 03:31:50 +00:00
|
|
|
<tr class="empty">
|
|
|
|
<td>
|
|
|
|
There are no invites yet.
|
|
|
|
</td>
|
|
|
|
</tr>
|
2022-12-20 08:51:53 +00:00
|
|
|
{% endfor %}
|
2023-01-11 03:31:50 +00:00
|
|
|
</table>
|
2023-01-13 22:54:21 +00:00
|
|
|
{% include "admin/_pagination.html" with nouns="invite,invites" %}
|
2022-11-18 07:09:04 +00:00
|
|
|
{% endblock %}
|