{% extends "layouts/election_layout.html" %} {% block header %} {{ election.name | title }} | Voters {% endblock %} {% block content %}

Voter List

The following voters are able to cast ballots in the election.

{% for voter in election.voters %} {% endfor %}
# Name Email
{{ loop.index }} {{ voter.name | suppress_none }} {{ voter.email }}
{% endblock %}