{% extends TEMPLATE_BASE %} {% load i18n %} {% block title %}{% trans "Voters" %} & {% trans "Ballot Tracking Center for" %} {{election.name}}{% endblock %} {% block content %}
{% if admin_p and not election.frozen_at %}

{% trans "anyone can vote" %}
{% trans "only voters listed explicitly below can vote" %}
{% if user.user_type in settings.AUTH_BIND_USERID_TO_VOTERID %}
{% trans "only voters from the same system" %}
{% endif %} {% if categories %}
{% trans "only voters who are members of " %}
{% endif %}
{% endif %} {% if email_voters and election.frozen_at and admin_p %}

{% trans "email voters" %}

{% endif %}

{% if admin_p %} {% if upload_p and not election.openreg %} {% endif %} {% endif %}
{% trans "Who can vote?" %} {% if election.openreg %} {% else %} {% endif %}

{% if election.num_voters > 20 %}

{% if q %}

{% trans "searching for" %} {{q}}. [{% trans "clear search" %}]

{% else %}
{% if not election.use_voter_aliases or admin_p %} {% trans "Voter name" %} {% else %} {% trans "Alias" %}{% endif %}:
{% endif %}

{% endif %} {% if voters %}

{% if election.num_cast_votes %} {% trans "cast vote" %}: {{election.num_cast_votes}} {% else %} {% trans "no votes yet" %} {% endif %}

{% if voters_page.has_previous %} {% trans "previous" %} {{limit}}    {% endif %} {% trans "Voters" %} {{voters_page.start_index}} - {{voters_page.end_index}} (of {{total_voters}})   {% if voters_page.has_next %} {% trans "next" %} {{limit}}    {% endif %}

{% if admin_p %} {% if election.use_voter_aliases %} {% endif %} {% else %} {% if election.use_voter_aliases %} {% else %} {% endif %} {% endif %} {% for voter in voters %} {% if admin_p %} {% if election.use_voter_aliases %} {% endif %} {% else %} {% if election.use_voter_aliases %} {% else %} {% endif %} {% endif %} {% endfor %}
{% trans "Name" %}{% trans "Alias" %}{% trans "E-mail" %}{% trans "Alias" %}{% trans "Name" %}{% trans "Smart Ballot Tracker" %}
{% if email_voters and election.frozen_at %} {% endif %} {{voter.name}}{{voter.alias}}{{voter.voter_email}} {% if voter.vote_hash %}{{voter.vote_hash}}{% else %}—{% endif %}{{voter.alias}}{{voter.name}}{% if voter.vote_hash %}{{voter.vote_hash}}{% else %}—{% endif %}
{% if voters_page.has_previous %} {% trans "previous" %} {{limit}}    {% endif %} {% trans "Voters" %} {{voters_page.start_index}} - {{voters_page.end_index}} (of {{total_voters}})   {% if voters_page.has_next %} {% trans "next" %} {{limit}}    {% endif %}

{% else %}

{% if not election.openreg %} {% trans "no voters." %} {% endif %} {% endif %}

{% if admin_p %} {% if voter_files %} {% trans "Prior Bulk Uploads:" %} {% endif %} {% endif %} {% endblock %}