{% extends "symposion/reviews/base.html" %} {% block body %}

Voting Status ({{ section_slug }})

{% if key %}
{% if key == "positive" %}

Positive proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and at least one +1 and no −1s

{% endif %} {% if key == "negative" %}

Negative proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and at least one −1 and no +1s

{% endif %} {% if key == "indifferent" %}

Indifferent proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and neither a +1 or a −1

{% endif %} {% if key == "controversial" %}

Controversial proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and both a +1 and −1

{% endif %} {% if key == "too_few" %}

Too Few Reviews proposals with fewer than {{ vote_threshold }} vote{{ vote_threshold|pluralize }}

{% endif %} {% include "symposion/reviews/_review_table.html" %}
{% else %}

Reviews are placed into one of five buckets depending on the state of their votes:

Positive {{ proposals.positive|length }}
proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and at least one +1 and no −1s
Negative {{ proposals.negative|length }}
proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and at least one −1 and no +1s
Indifferent {{ proposals.indifferent|length }}
proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and neither a +1 or a −1
Controversial {{ proposals.controversial|length }}
proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and both a +1 and −1
Too Few Reviews {{ proposals.too_few|length }}
proposals with fewer than {{ vote_threshold }} vote{{ vote_threshold|pluralize }}
{% endif %} {% endblock %}