{% extends "reviews/base.html" %} {% block extra_head %} {% endblock %} {% block body %}

Proposal Review Stats

{% if key %}
Go back to stats
{% 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 "reviews/_review_table.html" %}
{% else %} Proposals: Good ({{ proposals.good.count }}) | Bad ({{ proposals.bad.count }}) | Indifferent ({{ proposals.indifferent.count }}) | Controversial ({{ proposals.controversial.count }}) {% endif %} {% endblock %}