SciPost Submissions Pool
{% if is_ECAdmin %}
{% if recommendations.voting_in_preparation or recommendations.put_to_voting or latest_submission_events or pre_screening_subs %}
Administrative Tasks
{% if pre_screening_subs %}
Submissions in pre-screening phase
{% for submission in pre_screening_subs %}
-
{{ submission }}
Do pre-screening
{% endfor %}
{% endif %}
{% if recommendations.voting_in_preparation %}
Recommendations to prepare for voting
{% for recommendation in recommendations.voting_in_preparation %}
-
On Editorial Recommendation: {{ recommendation }}
Prepare for voting
{% endfor %}
{% endif %}
{% if recommendations.put_to_voting %}
Recommendations undergoing voting
{% for recommendation in recommendations.put_to_voting %}
-
{% include 'partials/submissions/admin/recommendation_tooltip.html' with classes='fa-li' recommendation=recommendation %}
On Editorial Recommendation: {{ recommendation }}
See Editorial Recommendation
{% endfor %}
{% endif %}
{% if latest_submission_events %}
View/hide latest events ({{ latest_submission_events|length }}) in the last 24 hours
{% include 'partials/submissions/submission_events_explicit.html' with events=latest_submission_events %}
{% endif %}
{% endif %}
{% endif %}
{% if assignments_to_consider or recs_to_vote_on or recs_current_voted %}
{% if assignments_to_consider %}
Your open Assignment Requests
{% for assignment in assignments_to_consider %}
- On submission: {{ assignment.submission }}
Accept or decline here
{% endfor %}
{% endif %}
{% if recs_to_vote_on %}
Recommendations to vote on
{% endif %}
{% if recs_current_voted %}
Current recommendations you have voted on:
{% endif %}
{% endif %}
{% if search_form %}
Filter by status
{% endif %}
{% if search_form.status.value %}
All Submissions with status: {{ search_form.status_verbose }}
{% include 'partials/submissions/pool/submissions_list.html' with submissions=submissions %}
{% else %}
Submissions currently unassigned
{% include 'partials/submissions/pool/submissions_list.html' with submissions=submissions.unassigned %}
Submissions currently in active refereeing phase
{% include 'partials/submissions/pool/submissions_list.html' with submissions=submissions.actively_refereeing %}
Submissions awaiting resubmission
{% include 'partials/submissions/pool/submissions_list.html' with submissions=submissions.revision_requested %}
Submissions accepted
{% include 'partials/submissions/pool/submissions_list.html' with submissions=submissions.accepted %}
{% endif %}