{% extends 'scipost/base.html' %} {% block pagetitle %}: Submissions Pool{% endblock pagetitle %} {% load bootstrap %} {% load guardian_tags %} {% load scipost_extras %} {% load submissions_extras %} {% block content %} {% if request.user|is_in_group:'Editorial Administrators' and recommendations_undergoing_voting %}

Administrative actions on recommendations undergoing voting:

Recommendations undergoing voting

{% for rec in recommendations_undergoing_voting %} {% if not forloop.first %}
{% endif %}
{% include 'submissions/_submission_card_fellow_content.html' with submission=rec.submission %}
{% include 'submissions/_recommendation_fellow_content.html' with recommendation=rec %}
{% if rec.remark_set.all %}

Remarks by Fellows:

    {% for remark in rec.remark_set.all|sort_by:'date' %} {{ remark.as_li }} {% endfor %}
{% endif %}

Fellows eligible to vote:

  • {% for eligible in rec.eligible_to_vote.all|sort_by:'user__last_name' %} {{ eligible.user.last_name }},  {% endfor %}

Voting results up to now:

  • Agreed: ({{ rec.voted_for.all.count }}) {% for agreed in rec.voted_for.all|sort_by:'user__last_name' %} {{ agreed.user.last_name }},  {% endfor %}
  • Disagreed: ({{ rec.voted_against.all.count }}) {% for disagreed in rec.voted_against.all|sort_by:'user__last_name' %} {{ disagreed.user.last_name }},  {% endfor %}
  • Abstained: ({{ rec.voted_abstain.all.count }}) {% for abstained in rec.voted_abstain.all|sort_by:'user__last_name' %} {{ abstained.user.last_name }},  {% endfor %}
{% if rec.remark_set %}

Remarks:

    {% for rem in rec.remark_set.all %}
  • {{ rem }}
  • {% empty %}
  • No remarks
  • {% endfor %}
{% endif %}
{% endfor %}

{% endif %} {% if assignments_to_consider %}

Assignment request

Can you act as Editor-in-charge? (see below to accept/decline)

{% for assignment_to_consider in assignments_to_consider %}
{% include 'submissions/_submission_assignment_request.html' with assignment=assignment_to_consider %}
{% endfor %}
{% endif %} {% if request.user|is_in_group:'Editorial Administrators' and recommendations_to_prepare_for_voting %}

Recommendations to prepare for voting

{% for rec in recommendations_to_prepare_for_voting %} {% if not forloop.first %}
{% endif %}
{% include 'submissions/_submission_card_fellow_content.html' with submission=rec.submission %}
{% include 'submissions/_recommendation_fellow_content.html' with recommendation=rec %}
{% endfor %}
{% endif %} {% if recs_to_vote_on %}

Recommendations to vote on

{% for rec in recs_to_vote_on %} {% if not forloop.first %}
{% endif %}
{% include 'submissions/_submission_card_fellow_content.html' with submission=rec.submission %}
{% include 'submissions/_recommendation_fellow_content.html' with recommendation=rec %}
{% endfor %}
{% endif %}

SciPost Submissions Pool

Submissions by status:


{% for sub in submissions_in_pool %}
{% include 'submissions/_submission_card_in_pool.html' with submission=sub remark_form=remark_form %}
{% endfor %}
{% endblock content %}