diff --git a/symposion/templates/reviews/review_stats.html b/symposion/templates/reviews/review_stats.html deleted file mode 100644 index fb613d091f5412bbdac0da9e0ee6acbf856f0a97..0000000000000000000000000000000000000000 --- a/symposion/templates/reviews/review_stats.html +++ /dev/null @@ -1,82 +0,0 @@ -{% extends "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 "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 %}