{% 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 %} {% if voting_form.errors %}

Warning: there was an error filling the voting form

{% for field in voting_form %} {% for error in field.errors %}
{{ error|escape }}
{% endfor %} {% endfor %} {% for error in voting_form.non_field_errors %}
{{ error|escape }}
{% endfor %}

Please go back to the form and try again!

{% endif %}

Editorial Recommendation

Concerning Submission:

{% include 'submissions/_submission_li.html' with submission=recommendation.submission %} View Reports and Submission details {% include 'submissions/pool/_submission_info_table.html' with submission=recommendation.submission %}
{% include 'submissions/_previous_recommendations_card_fellow_content.html' with recommendation=recommendation %}

Editorial Recommendation (latest)

{% include 'submissions/_recommendation_fellow_content.html' with recommendation=recommendation %} {% 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 %}

{% if recommendation.recommendation == 1 %} If you agree with a recommendation to publish, you can provide your ballpark quality tiering below
(this is not compulsory, but most welcome) {% endif %}

If you vote disagree, please provide an alternative recommendation below

{% csrf_token %} {{ voting_form|bootstrap }}
{% endif %} {% endblock %} {% block footer_script %} {% endblock %}