{% extends 'submissions/pool/base.html' %} {% block pagetitle %}: select referee for submission{% endblock pagetitle %} {% load scipost_extras %} {% load bootstrap %} {% block breadcrumb_items %} {{block.super}} 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 'partials/submissions/submission_summary.html' with submission=submission show_abstract=1 %} {% 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 'partials/submissions/arxiv_queryresult.html' with item=entry id=forloop.counter id2=0 %}
  • {% 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 %}
{% if ref_recruit_form %}

If the referee you were looking for was not found by using the method above, you can send a registration and refereeing invitation by filling this form:

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