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

Yard Sign Requests

View and manage households that have requested a yard sign.

Filters
Reset
Households Wanting Signs
{{ households.paginator.count }} Households Found
{% for household in households %} {% empty %} {% endfor %}
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.

{% if households.paginator.num_pages > 1 %} {% endif %}
{% endblock %} {% block extra_js %} {% if GOOGLE_MAPS_API_KEY %} {% endif %} {% endblock %}