{% from "_formhelpers.html" import render_field_in_row, render_field_data_in_row %} {% extends "base.html" %} {% block body %}

{{election.shortdesc}}

{{election.description}}

[More Information]

{% for field in form if field.widget.input_type != 'hidden' %} {% if nextaction == 'vote' %} {{ render_field_data_in_row( field, num_candidates=num_candidates, usernamemap=usernamemap) }} {% else %} {{ render_field_in_row(field, usernamemap=usernamemap) }} {% endif %} {% endfor %}
{% if g.fas_user %}

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

Back {{ form.csrf_token }} {% 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 %} {% if election.voting_type == 'range' %}

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 {{ max_range }} with 0 as 'least or no preference' and {{ max_range }} 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.

{% elif election.voting_type == 'range_3' %}

Information on Simplified Range Voting

Fedora Project has implemented a simplified version of 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 {{ max_range }} with 0 as 'least or no preference' and {{ max_range }} 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.

{% endif %} {% endblock %}