{% extends "base.html" %} {% block body %}

{{election.shortdesc}}

{{election.description}}

[More Information]

{% for candidate in election.candidates %} {% if g.fas_user %} {% if nextaction == 'vote' %} {% endif %} {% if nextaction == 'confirm' %} {% endif %} {% endif %} {% endfor %}
{% if election.candidates_are_fasusers %} {{ usernamemap[candidate.id] }} {% else %} {{ candidate.name }} {% endif %} [Info] {% set cid = candidate.id %} {% set weightpercent = (voteinfo[candidate.id]*100)/num_candidates %} {% if weightpercent >= 90 %}
{{voteinfo[cid]}}
{% elif weightpercent >= 70 %}
{{voteinfo[cid]}}
{% elif weightpercent >= 50 %}
{{voteinfo[cid]}}
{% elif weightpercent >= 30 %}
{{voteinfo[cid]}}
{% elif weightpercent >= 10 %}
{{voteinfo[cid]}}
{% else %}
{{voteinfo[cid]}}
{% endif %}
{% if g.fas_user %}

{% if nextaction == 'confirm' %} {% else %} {% endif %}

{% endif %}
{% if election.legal_voters.count() != 0 %}

To vote in this election you must be a member of any one of the following groups:

{% else %}

{% endif %}

Information on Range Voting

Fedora Project has implemented Range Voting for this election, in particular the "Range (score-summing, blanks treated as zero score, no quorum rule)" range voting system.

To cast your vote in this election simply select a value between 0 and {{num_candidates}} with 0 as 'least or no preference' and {{num_candidates}} as 'highest preference'.

At the end of the election, the highest ranking candidate(s) are marked as the winners.

For more information about Range Voting, visit the Center for Range Voting.

{% endblock %}