mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-14 03:11:46 +00:00
9c376395db
No email tie, added uses and expires, now works by URL.
51 lines
1.8 KiB
HTML
51 lines
1.8 KiB
HTML
{% extends "settings/base.html" %}
|
|
{% load activity_tags %}
|
|
|
|
{% block subtitle %}Invites{% endblock %}
|
|
|
|
{% block content %}
|
|
<form>
|
|
<div class="buttons">
|
|
<a href="{% url "admin_invite_create" %}" class="button">Create New</a>
|
|
</div>
|
|
</form>
|
|
<section class="icon-menu">
|
|
{% for invite in page_obj %}
|
|
<a class="option" href="{{ invite.urls.admin_view }}">
|
|
<i class="fa-solid fa-envelope"></i>
|
|
<span class="handle">
|
|
{{ invite.token }}
|
|
|
|
<small>
|
|
{% if invite.expires %}
|
|
Expires in {{ invite.expires|timeuntil }}
|
|
{% if invite.notes %}|{% endif %}
|
|
{% endif %}
|
|
{% if invite.notes %}
|
|
{{ invite.notes }}
|
|
{% endif %}
|
|
</small>
|
|
</span>
|
|
<time>
|
|
{% if invite.uses %}
|
|
{{ invite.uses }} use{{ invite.uses|pluralize }} left
|
|
{% else %}
|
|
Infinite uses
|
|
{% endif %}
|
|
</time>
|
|
</a>
|
|
{% empty %}
|
|
<p class="option empty">
|
|
There are no unused invites.
|
|
</p>
|
|
{% endfor %}
|
|
<div class="load-more">
|
|
{% if page_obj.has_previous %}
|
|
<a class="button" href=".?page={{ page_obj.previous_page_number }}">Previous Page</a>
|
|
{% endif %}
|
|
{% if page_obj.has_next %}
|
|
<a class="button" href=".?page={{ page_obj.next_page_number }}">Next Page</a>
|
|
{% endif %}
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|