{% extends 'scipost/base.html' %}
{% block pagetitle %}: registration invitations{% endblock pagetitle %}
{% block bodysup %}
Invitations sent:
Editorial Fellows
Last name | First name | Email | Date sent | Type (Fellow, Contrib) | Responded |
{% for fellow in sent_reg_inv_fellows %}
{{ fellow.last_name }} |
{{ fellow.first_name }} |
{{ fellow.email_address }} |
{{ fellow.date_sent }} |
{{ fellow.invitation_type }} |
{{ fellow.responded }} |
{% endfor %}
Normal Contributors
Last name | First name | Email | Date sent | Type (Fellow, Contrib) | Responded |
{% for fellow in sent_reg_inv_contrib %}
{{ fellow.last_name }} |
{{ fellow.first_name }} |
{{ fellow.email_address }} |
{{ fellow.date_sent }} |
{{ fellow.invitation_type }} |
{{ fellow.responded }} |
{% endfor %}
{% endblock bodysup %}