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