{% extends "base.html" %} {% block content %}
| Voter ID | Name | District | Support | Yard Sign | Actions |
|---|---|---|---|---|---|
{{ voter.voter_id|default:"N/A" }} |
{{ voter.first_name }} {{ voter.last_name }}
{{ voter.address|truncatechars:40 }}
|
{{ voter.district|default:"-" }} | {% if voter.candidate_support == 'supporting' %} Supporting {% elif voter.candidate_support == 'not_supporting' %} Not Supporting {% else %} Unknown {% endif %} | {% if voter.yard_sign == 'has' %} Has Sign {% elif voter.yard_sign == 'wants' %} Wants Sign {% else %} None {% endif %} | View 360° |
|
No voters found matching your search. |
|||||