{% extends 'scipost/base.html' %} {% block pagetitle %}: select referee for submission{% endblock pagetitle %} {% block headsup %} {% load scipost_extras %} {% endblock headsup %} {% block bodysup %} {% if user.is_authenticated %}

Referee Selection Page for Submission

(go to the Submissions Page to view Reports and Comments)

(go back to the Editorial Page to take editorial actions)


Submission:

{{ submission.header_as_table }}

Abstract:

{{ submission.abstract }}

Select an additional Referee

{% csrf_token %} {{ ref_search_form }}
{% if contributors_found %}

Identified as contributor:

{% for contributor in contributors_found %} {% endfor %}
{{ contributor.user.first_name }} {{ contributor.user.last_name }}  Send refereeing invitation
{% elif ref_search_form.has_changed %}

No Contributor with this last name could be identified.


You can send a registration and refereeing invitation by filling this form:

{% csrf_token %} {% load crispy_forms_tags %} {% crispy ref_recruit_form %}
{% endif %}
{% endif %} {% endblock bodysup %}