{% extends "symposion/reviews/base.html" %} {% block body_class %}{{ block.super }} voting-status {{ key }}{% endblock %} {% block body %}

Voting Status ({{ section_slug }})

{% if key %}
Positive Negative Indifferent Controversial Too Few
{% if key == "positive" %}

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

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

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

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

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

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

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

{% 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 +2 and no −2s
Negative {{ proposals.negative|length }}
proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and at least one −2 and no +2s
Indifferent {{ proposals.indifferent|length }}
proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and neither a +2 or a −2
Controversial {{ proposals.controversial|length }}
proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and both a +2 and −2
Too Few Reviews {{ proposals.too_few|length }}
proposals with fewer than {{ vote_threshold }} vote{{ vote_threshold|pluralize }}
{% endif %} {% endblock %}