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