{% extends 'submissions/pool/base.html' %} {% load bootstrap %} {% load scipost_extras %} {% block breadcrumb_items %} {{ block.super }} Editorial Recommendation {% endblock %} {% block pagetitle %}: Editorial Recommendation{% endblock pagetitle %} {% block content %}

Editorial Recommendation to vote on

{% include 'partials/submissions/submission_li.html' with submission=recommendation.submission %} View Reports and Submission details {% include 'partials/submissions/pool/submission_info_table.html' with submission=recommendation.submission %}
{% if recommendation.get_other_versions %}
{% for old_rec in recommendation.get_other_versions %} {% include 'partials/submissions/recommendation_fellow_content.html' with recommendation=old_rec %}

Fellows eligible to vote:

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

Voting results:

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

Remarks:

    {% for rem in old_rec.remarks.all %}
  • {% include 'partials/submissions/remark_small.html' with remark=rem %}
  • {% empty %}
  • No remarks
  • {% endfor %}
{% endfor %}
{% endif %}

Editorial Recommendation to vote on

{% include 'partials/submissions/recommendation_fellow_content.html' with recommendation=recommendation %}

Fellows eligible to vote:

Voting results up to now:

Remarks:

{% if perms.scipost.can_fix_College_decision %} {% endif %}
{% if voting_form %}

Your position on this recommendation

{% if previous_vote %}

You had previously voted {{ previous_vote }}; you can use the form below to change your vote and/or add a remark:

{% endif %}
{% csrf_token %} {{ voting_form|bootstrap:'0,12' }}
{% endif %} {% endblock %}