{% extends 'scipost/base.html' %} {% block pagetitle %}: registration invitations{% endblock pagetitle %} {% block bodysup %}

Registration Invitations


Send a new invitation:

{% csrf_token %} {{ reg_inv_form.as_table }}

Invitations sent:

Editorial Fellows

{% for fellow in sent_reg_inv_fellows %} {% endfor %}
Last nameFirst nameEmailDate sentType (Fellow, Contrib)Responded
{{ fellow.last_name }} {{ fellow.first_name }} {{ fellow.email_address }} {{ fellow.date_sent }} {{ fellow.invitation_type }} {{ fellow.responded }}

Normal Contributors

{% for fellow in sent_reg_inv_contrib %} {% endfor %}
Last nameFirst nameEmailDate sentType (Fellow, Contrib)Responded
{{ fellow.last_name }} {{ fellow.first_name }} {{ fellow.email_address }} {{ fellow.date_sent }} {{ fellow.invitation_type }} {{ fellow.responded }}
{% endblock bodysup %}