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

Door Visits

{{ households.paginator.count }} Unvisited Households
Filters
Unvisited Households
{% for household in households %} {% empty %} {% endfor %}
Target Voters Neighborhood Address City, State Action
{% for voter in household.target_voters %} {{ voter.first_name }} {{ voter.last_name }} {% if not forloop.last %}, {% endif %} {% endfor %} {% if household.neighborhood %} {{ household.neighborhood }} {% else %} None {% endif %} {{ household.address_street }} {{ household.city }}, {{ household.state }}

No unvisited households found.

Try adjusting your filters or targeting more voters.

{% if households.paginator.num_pages > 1 %} {% endif %}
{% endblock %}