{% extends "propmgr/base.html" %} {% load appmedia %}{% load adminmedia %} {% block feeds %} {% include "propmgr/feeds.html" %} {% endblock %} {% block styles %} {% endblock %} {% block content %} {% load propmgr %}

Proposal Vote Statistics

NOTE: Table headings are clickable and will resort the tables. Use shift-click to sort by multiple columns in order. Clicking on the 'Proposal' heading will reset the sorting. The votes column are sorted by the total number of votes plus some fuzzy logic that is not great, but better than nothing.

{{ vote_count }} Votes on {{ prop_count }} Proposals.

Contents
{% if ranked_proposals.needs_champion %} {% var rank_id = 'needs_champion' %} {% var rank_name = 'Need Champions' %} {% var proposals = ranked_proposals.needs_champion %} {% include "propmgr/proposal_rank_list.html" %} {% endif %} {% if ranked_proposals.missing_votes %} {% var rank_id = 'missing_votes' %} {% var rank_name = 'Missing Votes' %} {% var proposals = ranked_proposals.missing_votes %} {% include "propmgr/proposal_rank_list.html" %} {% endif %} {% if ranked_proposals.all_positive %} {% var rank_id = 'all_positive' %} {% var rank_name = 'All Positive' %} {% var proposals = ranked_proposals.all_positive %} {% include "propmgr/proposal_rank_list.html" %} {% endif %} {% if ranked_proposals.all_negative %} {% var rank_id = 'all_negative' %} {% var rank_name = 'All Negative' %} {% var proposals = ranked_proposals.all_negative %} {% include "propmgr/proposal_rank_list.html" %} {% endif %} {% if ranked_proposals.mixed %} {% var rank_id = 'mixed' %} {% var rank_name = 'Mixed' %} {% var proposals = ranked_proposals.mixed %} {% include "propmgr/proposal_rank_list.html" %} {% endif %}
{% endblock %}