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

Door Visit History

Review completed door-to-door visits and outcomes.

Filter by Date Range
{% if selected_volunteer_id %}{% endif %}
{% if start_date or end_date %} {% endif %}
Visits per Volunteer {% if selected_volunteer_id %} Clear filter {% endif %}
{% for v in volunteer_counts %} {{ v.name }} {{ v.count }} {% empty %}

No volunteer data available.

{% endfor %}
Visited Households
{{ history.paginator.count }} Households Visited
{% for household in history %} {% empty %} {% endfor %}
Household Address Voters Visited Last Visit Outcome Comments
{{ household.address_display }}
{% if household.neighborhood %} {{ household.neighborhood }} {% endif %} {% if household.district %} District: {{ household.district }} {% endif %}
{% for v_id, v_name in household.voters_at_address %} {{ v_name }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% for v_id, v_name in household.voters_at_address %} {{ v_name }} {% endfor %}
{{ household.last_visit_date|date:"M d, Y H:i" }}
({{ household.last_volunteer|default:"N/A" }})
{{ household.last_outcome }}
{{ household.notes|default:"-" }}

No door visits found for this selection.

Try clearing your filters or visit the Door Visits page to log more visits.

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