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