{% extends "base.html" %} {% block title %}Election Information{% endblock %} {% block body %} {% if is_admin or election.status == 'In progress'%}
Election Closed voting ended {{ election.end_date | humanize}}
{{ election.description }}
{% elif election.status == 'In progress' %}Election Open voting ends {{ election.end_date | humanize}}
{{ election.description }}
{% elif election.status == 'Pending'%}Election Opens Soon voting opens {{ election.start_date | humanize}}
{{ election.description }}
{% endif %} {% if election.url %}More Information about this election
{% endif %} {% if election.status == 'In progress' or election.status == 'Pending' %}To vote in this election you must be a member of any one of the following groups:
You are only seeing these results because you are an admin.
The results for this election are currently embargoed pending formal announcement
Consult the text version of the results
Candidate | Votes | {% if stats['candidate_voters'] %}Voters per candidate | Average votes per candidate | {% endif %}|
---|---|---|---|---|
{% if candidate.url %} {% endif %} {% if election.candidates_are_fasusers %} {{ usernamemap['%s' % candidate.id] }} {% else %} {{candidate.name}} {% endif %} {% if candidate.url %} {% endif %} {% if flag[-1] == 0 %} Elected {% endif %} | {{ candidate.vote_count }} | {% if stats['candidate_voters'] %}{{ stats['candidate_voters'][candidate.name] }} | {% if stats['candidate_voters'][candidate.name] %}{{ candidate.vote_count / stats['candidate_voters'][candidate.name] }} | {% else %}- | {% endif %} {% endif %}