{% extends 'submissions/_pool_base.html' %} {% block pagetitle %}: select referee for submission{% endblock pagetitle %} {% load scipost_extras %} {% load bootstrap %} {% block breadcrumb_items %} {{block.super}} Pool Editorial Page ({{submission.arxiv_identifier_w_vn_nr}}) Select Referee {% endblock %} {% block content %}

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:

{% include 'submissions/_submission_summary.html' with submission=submission %} {% if submission.referees_flagged %}

Referees flagged upon submission (treat reports with caution):

{{ submission.referees_flagged }}

{% endif %}

Select an additional Referee

{% csrf_token %} {{ ref_search_form|bootstrap }}
{% if queryresults.entries %}

The system identified the following potential coauthorships (from arXiv database)

(only up to 5 most recent shown; if within the last 3 years, referee is disqualified):

    {% for entry in queryresults.entries %}
  • {% include 'submissions/_arxiv_queryresult.html' with item=entry %}
  • {% endfor %}
{% endif %} {% 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.

{% endif %}

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

{% csrf_token %} {{ ref_recruit_form|bootstrap }}
{% endblock %}