{% extends "base.html" %} {% load static %} {% block content %}
| Name | District | Phone | Target Voter | Supporter | Actions |
|---|---|---|---|---|---|
|
{{ voter.first_name }} {{ voter.last_name }}
{{ voter.address|default:"No address provided" }}
|
{{ voter.district|default:"-" }} | {% if voter.phone %} {% else %} - {% endif %} {% if voter.secondary_phone %} {% endif %} | {% if voter.is_targeted %} 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. |
|||||