44 lines
1.3 KiB
HTML
44 lines
1.3 KiB
HTML
{% extends "administration/base.html" %}
|
|
|
|
{% load i18n %}
|
|
{% load utils %}
|
|
|
|
{% block title %}
|
|
{% title %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<h1><span class="pficon-migration"></span> {% trans "Invitations" %}</h1>
|
|
<span>{% trans "Create Invitation Links which optionally force a username or expire on a set date." %}</span>
|
|
<hr>
|
|
<a href="{% url 'passbook_admin:invitation-create' %}?back={{ request.get_full_path }}" class="btn btn-primary">
|
|
{% trans 'Create...' %}
|
|
</a>
|
|
<hr>
|
|
<table class="table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>{% trans 'Expiry' %}</th>
|
|
<th>{% trans 'Link' %}</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for invitation in object_list %}
|
|
<tr>
|
|
<td>{{ invitation.expires|default:"Never" }}</td>
|
|
<td>
|
|
<pre>{{ invitation.link }}</pre>
|
|
</td>
|
|
<td>
|
|
<a class="btn btn-default btn-sm"
|
|
href="{% url 'passbook_admin:invitation-delete' pk=invitation.uuid %}?back={{ request.get_full_path }}">{% trans 'Delete' %}</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% endblock %}
|