{% extends 'scipost/base.html' %}
{% block pagetitle %}: Submissions Pool{% endblock pagetitle %}
{% block bodysup %}
{% load guardian_tags %}
{% load scipost_extras %}
{% load submissions_extras %}
{% if request.user|is_in_group:'Editorial Administrators' and recommendations_undergoing_voting %}
{% for eligible in rec.eligible_to_vote.all|sort_by:'user__last_name' %}
{{ eligible.user.last_name }},
{% endfor %}
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 %}
Recommendations undergoing voting
{% for rec in recommendations_undergoing_voting %}
{% if request.user|is_not_author_of_submission:rec.submission.arxiv_identifier_w_vn_nr %}
{{ rec.submission.header_as_li_for_Fellows }}
Editorial recommendation:
Remarks by Fellows:
{% for remark in rec.remark_set.all|sort_by:'date' %}
{{ remark.as_li }}
{% endfor %}
{% endif %}
Fellows eligible to vote:
Voting results up to now:
Actions:
{% endif %}
{% endfor %}
{{ assignment_to_consider.submission.abstract }}