{% extends 'scipost/_personal_page_base.html' %} {% block pagetitle %}: registration invitations{% endblock pagetitle %} {% load scipost_extras %} {% load bootstrap %} {% block breadcrumb_items %} {{block.super}} Registration invitations {% endblock %} {% block content %}

Registration Invitations

{% if request.user|is_in_group:'SciPost Administrators' %}

Perform a cleanup of existing invitations.

{% endif %}

Send a new invitation

{% if errormessage %}

{{ errormessage }}

{% endif %}
{% csrf_token %} {{reg_inv_form.media}} {{reg_inv_form|bootstrap}}

Existing drafts (to be processed by Admin) ({{existing_drafts|length}}) view/hide

{% for draft in existing_drafts %} {% empty %} {% endfor %}
Last name First name Email Date drafted Type Drafted by Actions
{{ draft.last_name }} {{ draft.first_name }} {{ draft.email }} {{ draft.date_drafted }} {{ draft.get_invitation_type_display }} {{ draft.drafted_by.user.first_name }} {{ draft.drafted_by.user.last_name }} Edit | Process | Mark as processed
No drafts found.
{% include 'scipost/_draft_registration_tables.html' %} {% endblock %}