{% extends "base.html" %} {% load static %} {% block content %}
Manage and track your door-to-door campaign progress.
| Action | Household Address | Targeted Voters | Neighborhood |
|---|---|---|---|
|
{{ household.address_street }}
{{ household.city }}
{% if household.neighborhood %}
{{ household.neighborhood }}
{% endif %}
|
{% for voter in household.target_voters %}
{{ voter.first_name }} {{ voter.last_name }}
{% endfor %}
|
{% if household.neighborhood %} {{ household.neighborhood }} {% else %} Not assigned {% endif %} | |
|
No unvisited households found. Try adjusting your filters or target more voters. |
|||