{% extends "profile_base.html" %} {% set profile_nav_active = "invites" %} {% block profile_content %}
{% set breadcrumbs = [ {"name": current_user.name | display_name(current_user.username), "href": "/profile"}, {"name": "Invites", "href": "/profile/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
{{ invite.created_at | humantime }}
Expires
{{ invite.expires_at | humantime }}
Accepted
{% if invite.accepted_at %}
{{ invite.accepted_at | humantime }}
{% if invite.accepted_user_username and invite.accepted_user_name %}
{{ invite.accepted_user_name | display_name(invite.accepted_user_username) }}
{% 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 %}