File diff 6789b25e69a3 → 430d3dad99eb
pinaxcon/templates/symposion/reviews/review_stats.html
Show inline comments
 
{% extends "symposion/reviews/base.html" %}
 

	
 
{% block body_class %}{{ block.super }} voting-status{% endblock %}
 

	
 
{% block body %}
 
    <h1>Voting Status ({{ section_slug }})</h1>
 

	
 
    {% if key %}
 
        <div class="breadcrumbs">
 
            <a href="{% url "review_status" section_slug "positive" %}">Positive</a> |
 
            <a href="{% url "review_status" section_slug "negative" %}">Negative</a> |
 
            <a href="{% url "review_status" section_slug "indifferent" %}">Indifferent</a> |
 
            <a href="{% url "review_status" section_slug "controversial" %}">Controversial</a>  |
 
            <a href="{% url "review_status" section_slug "too_few" %}">Too Few</a>
 
        </div>
 

	
 
        <div>
 
            {% if key == "positive" %}
 
                <h3>Positive
 
                <small>proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and at least one +1 and no &minus;1s</small></h3>
 
            {% endif %}
 
            {% if key == "negative" %}
 
                <h3>Negative
 
                <small>proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and at least one &minus;1 and no +1s</small></h3>
 
            {% endif %}
 
            {% if key == "indifferent" %}
 
                <h3>Indifferent
 
                <small>proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and neither a +1 or a &minus;1</small></h3>