{% extends "base.html" %} {% load static %} {% block content %}
View and manage households that have requested a yard sign.
| ACTION | Household Address | Voters Wanting Sign | Sign Type | Voter Notes | Neighborhood |
|---|---|---|---|---|---|
|
{{ household.address_street }}
{{ household.city }}, {{ household.state }} {{ household.zip_code }}
{% if household.neighborhood %}
{{ household.neighborhood }}
{% endif %}
|
{% for voter in household.voters_who_want_sign %}
{{ voter.first_name }} {{ voter.last_name }}
{% endfor %}
|
{{ household.sign_types_display }} |
{% for voter in household.voters_who_want_sign %}
{% if voter.notes %}
{{ voter.first_name }}: {{ voter.notes }}
{% endif %}
{% endfor %}
|
{% if household.neighborhood %} {{ household.neighborhood }} {% else %} — {% endif %} | |
| No records found with current filters. | |||||