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