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

Door Visit History

Review completed door-to-door visits and outcomes.

Filter by Date Range
{% if start_date or end_date %} {% endif %}
Visits per Volunteer
{% for v_name, count in volunteer_counts %}
{{ v_name }} {{ count }}
{% empty %}

No volunteer data available for this selection.

{% endfor %}
Visited Households
{{ history.paginator.count }} Households Visited
{% for household in history %} {% empty %} {% endfor %}
Household Address Voters Visited Last Visit Volunteer Outcome Comments
{{ household.address_display }}
{% if household.neighborhood %} {{ household.neighborhood }} {% endif %} {% if household.district %} District: {{ household.district }} {% endif %}
{% for voter_name in household.voters_at_address %} {{ voter_name }} {% endfor %}
{{ household.last_visit_date|date:"M d, Y" }}
{{ household.last_visit_date|date:"H:i" }}
{% if household.last_volunteer %}
{{ household.last_volunteer.first_name|first }}{{ household.last_volunteer.last_name|first }}
{{ household.last_volunteer }}
{% else %} N/A {% endif %}
{{ household.last_outcome }}
{{ household.notes|default:"-" }}

No door visits found for this selection.

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

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