{% extends 'submissions/_pool_base.html' %} {% block pagetitle %}: Submissions Pool{% endblock pagetitle %} {% load bootstrap %} {% load guardian_tags %} {% load scipost_extras %} {% load submissions_extras %} {% block breadcrumb_items %} {{block.super}} Pool {% endblock %} {% block content %} {% with is_ECAdmin=request.user|is_in_group:'Editorial Administrators' %}
{% if is_ECAdmin %} {% if recommendations_undergoing_voting %}

Administrative actions on recommendations undergoing voting:

  • To send an email reminder to each Fellow with at least one voting duty, click here

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.remarks.all %}

Remarks by Fellows:

    {% for remark in rec.remarks.all|sort_by:'date' %} {% include 'partials/submissions/remark_as_li.html' with remark=remark %} {% 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.remarks %}

Remarks:

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

{% endif %} {% if 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 %} {% 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 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 key, val in submission_status %}
  • {{ val }}
  • {% endfor %}

{% for sub in submissions_in_pool %}
{% include 'submissions/_submission_card_in_pool.html' with submission=sub remark_form=remark_form is_ECAdmin=is_ECAdmin user=request.user %}
{% endfor %}

Pool

    {% for key, val in submission_status %}
  • {{ val }}
  • {% endfor %}
{% if is_ECAdmin %} {% if recommendations_undergoing_voting %}
    {% for recommendation in recommendations_undergoing_voting %}
  • {{recommendation.submission.title}}

    {{recommendation.submission.author_list}}

    Formulated on {{recommendation.date_submitted}}

  • {% endfor %}
{% endif %} {% if recommendations_to_prepare_for_voting %}
    {% for recommendation in recommendations_to_prepare_for_voting %}
  • {{recommendation.submission.title}}

    {{recommendation.submission.author_list}}

    Formulated on {{recommendation.date_submitted}}

  • {% endfor %}
{% endif %} {% endif %}

Submissions in pool ({{submissions_in_pool|length}})

    {% for submission in submissions_in_pool %}
  • {{submission.title}}

    {{submission.author_list}}

    {{submission.get_status_display}}

  • {% empty %}
  • No submission in the pool

  • {% endfor %}
{% endwith %} {% endblock %}