{% extends "base.html" %} {% block content %}
{% with staff_nav_active="invites" %} {% include "partials/staff_sidebar.html" %} {% endwith %}
{% set breadcrumbs = [ {"name": "Staff", "href": "/staff"}, {"name": "Invites", "href": "/staff/invites"}, {"name": invite.uuid} ] %} {% include "partials/breadcrumbs.html" %}

Invite details

{{ invite.status_label }} {{ invite.uuid }}
{% if notice %}
{{ notice }}
{% endif %} {% if error %}
{{ error }}
{% endif %}
Email
{{ invite.email | default("Open invite", true) }}
Signup link
{{ invite.signup_url }}
Created by
{% with user_link_href = invite.created_by_href, user_link_username = invite.created_by_username, user_link_label = invite.created_by_name | display_name(invite.created_by_username), user_link_class = "text-decoration-none" %} {% include "partials/hover_card_user_link.html" %} {% endwith %}
Created
{{ invite.created_at | humantime }}
Expires
{{ invite.expires_at | humantime }}
Accepted
{% if invite.accepted_at %}
{{ invite.accepted_at | humantime }}
{% if invite.accepted_user_href and invite.accepted_user_username and invite.accepted_user_name %}
{% with user_link_href = invite.accepted_user_href, user_link_username = invite.accepted_user_username, user_link_label = invite.accepted_user_name | display_name(invite.accepted_user_username), user_link_class = "text-decoration-none" %} {% include "partials/hover_card_user_link.html" %} {% endwith %}
{% if invite.accepted_user_email %}
{{ invite.accepted_user_email }}
{% endif %} {% endif %} {% else %} Not accepted {% endif %}
Edit invite
Saving applies a new expiry from now.
Back to invites
{% with modal_id="confirm-delete-invite", modal_title="Delete invite", modal_body='Delete ?', modal_confirm_text="Delete invite", modal_desc="This removes the invite from the active list and prevents future signup use." %} {% include "partials/confirm_modal.html" %} {% endwith %} {% endblock %}