{% extends "base.html" %} {% load static %} {% block content %}

Voter Registry

Advanced Search {% if can_edit_voter %} Add Voter {% endif %}
{% if query or request.GET.is_targeted or request.GET.support or request.GET.has_address or request.GET.visited or request.GET.yard_sign or request.GET.window_sticker or request.GET.has_donations %} Clear {% endif %}
Voters ({{ voters.paginator.count }})
{% for voter in voters %} {% empty %} {% endfor %}
Name District Neighborhood Phone Targeted Visit Target Supporter
{{ voter.first_name }} {{ voter.last_name }}
{{ voter.address|default:"No address provided" }}
{{ voter.district|default:"-" }} {{ voter.neighborhood|default:"-" }} {% if voter.phone %} {% else %} - {% endif %} {% if voter.secondary_phone %} {% endif %} {% if voter.is_targeted %} Yes {% else %} No {% endif %} {% if voter.target_door_visit %} Yes {% else %} No {% endif %} {% if voter.candidate_support == 'supporting' %} Supporting {% elif voter.candidate_support == 'not_supporting' %} Not Supporting {% else %} Unknown {% endif %}

No voters found matching your search.

{% if voters.paginator.num_pages > 1 %} {% endif %}
{% if GOOGLE_MAPS_API_KEY %} {% endif %} {% endblock %}