SciPost Submissions Pool
{% if is_ECAdmin %}
{% if recommendations_to_prepare_for_voting or recommendations_undergoing_voting %}
Administrative Tasks
{% if recommendations_to_prepare_for_voting %}
Recommendations to prepare for voting
{% for recommendation in recommendations_to_prepare_for_voting %}
- On Editorial Recommendation: {{ recommendation }}
Prepare for voting
{% endfor %}
{% endif %}
{% if recommendations_undergoing_voting %}
Recommendations undergoing voting
{% for recommendation in recommendations_undergoing_voting %}
- {% include 'partials/submissions/admin/recommendation_tooltip.html' with classes='fa-li' recommendation=recommendation %}
On Editorial Recommendation: {{ recommendation }}
See Editorial Recommendation
{% endfor %}
{% endif %}
{% endif %}
{% endif %}
{% if assignments_to_consider or recs_to_vote_on %}
{% 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 %}
{% endif %}
{% if search_form %}
Filter by status
{% endif %}
{% for sub in submissions_in_pool %}
-
{% if sub == submission %}
{% include 'partials/submissions/pool/submission_li.html' with submission=sub is_current=1 %}
{% else %}
{% include 'partials/submissions/pool/submission_li.html' with submission=sub is_current=0 %}
{% endif %}
{% empty %}
-
No Submissions found.
{% endfor %}
{% if submission %}
{% include 'partials/submissions/pool/submission_details.html' with submission=submission remark_form=remark_form is_ECAdmin=is_ECAdmin user=request.user %}
{% else %}
Click on a submission to see its summary and actions
{% if is_ECAdmin %}
All events in the last 24 hours
{% include 'submissions/submission_event_list_general.html' with events=latest_events %}
{% endif %}
{% endif %}