{% 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 %}

Editorial recommendation

{# {{ rec.print_for_Fellows }}#}
{% 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 }}
  • {% 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 %}
{{ assignment_to_consider.submission.header_as_table }}

Abstract:

{{ assignment_to_consider.submission.abstract }}

{% 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 %}

Editorial recommendation

{{ rec.print_for_Fellows }}
{% 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 %}

Editorial recommendation

{{ rec.print_for_Fellows }}
{% endfor %}
{% endif %}

SciPost Submissions Pool

Submissions by status:


{% for sub in submissions_in_pool %}
{% include 'submissions/_submission_card_fellow_content.html' with submission=sub %}
{% if sub.remark_set.all %}

Remarks on this submission:

    {% for rem in sub.remark_set.all %} {{ rem.as_li }} {% endfor %}
{% endif %}
{% csrf_token %} {{ remark_form|bootstrap:'0,12' }}
{% get_obj_perms request.user for sub as "sub_perms" %} {% if "can_take_editorial_actions" in sub_perms or request.user|is_in_group:'Editorial Administrators' %} {% if sub|required_actions %}

Required actions:

    {% for todoitem in sub|required_actions %}
  • {{ todoitem }}
  • {% endfor %}
{% endif %}

Go to this Submission's Editorial Page

{% endif %} {% if perms.scipost.can_assign_submissions %} {% if sub.editorialassignment_set.all %}

EIC Assignment requests:

    {% for assignment in sub.editorialassignment_set.all %} {{ assignment.info_as_li }} {% endfor %}
{% endif %} {% if sub.editor_in_charge == None %}

Actions:

{% endif %} {% endif %} {% if request.user|is_in_group:'Editorial Administrators' %}

Send a communication to the Editor-in-charge

{% if sub.status == 'accepted' %}

After proofs have been accepted, you can initiate the publication process (leads to the validation page)

{% endif %} {% endif %}
{% endfor %}
{% endblock content %}