{% extends "review/base.html" %} {% block primary %}

Proposal Review Stats

{% if key %}
{% if key == "good" %}

Good ({{ good_proposals|length }})

proposals with at least one +1 and no −1s
{% endif %} {% if key == "bad" %}

Bad ({{ bad_proposals|length }})

proposals with at least one −1 and no +1s
{% endif %} {% if key == "indifferent" %}

Indifferent ({{ indifferent_proposals|length }})

proposals with neither a +1 or a −1
{% endif %} {% if key == "controversial" %}

Controversial ({{ controversial_proposals|length }})

proposals with both a +1 and −1
{% endif %} {% include "review/_review_table.html" %}
{% else %} Proposals: Good ({{ proposals.good.count }}) | Bad ({{ proposals.bad.count }}) | Indifferent ({{ proposals.indifferent.count }}) | Controversial ({{ proposals.controversial.count }}) {% endif %} {% endblock %}