{% extends "base.html" %} {% load static %} {% block content %}
Review completed door-to-door visits and outcomes.
No volunteer data available for this selection.
{% 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 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" }}
{{ 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 }}
|
{{ 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. |
|||||