{% extends "base.html" %} {% load static %} {% block content %}
View and manage households that have requested a yard sign.
| Household Address | Voters Wanting Sign | 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 %}
|
{% if household.neighborhood %} {{ household.neighborhood }} {% else %} Not assigned {% endif %} |
|
No households wanting signs found. Try adjusting your filters or search criteria. |
||