{% extends "admin_app.html" %} {% block content %}

{% trans %}Manage invitations{% endtrans %}

{{ form.csrf_token }}

{% trans %}Create new invitation{% endtrans %}

{% trans %}Create a new invitation link to invite more users to your Snikket instance by clicking the button below.{% endtrans %}

{{ form.action_create_invite(class="primary") }}

{% trans %}Pending invitations{% endtrans %}

{% if invites %} {% for invite in invites %} {% endfor %}
Created Expires Actions
{{ invite.created_at | format_date }} {{ (invite.expires - now) | format_timedelta(add_direction=True) }} {#- -#} {% trans %}Show invite details{% endtrans %} {#- -#} {#- -#}
{% else %}

{% trans %}Currently, there are no pending invitations.{% endtrans %}

{% endif %}
{% endblock %}