{% 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 %}
ACTION Household Address Voters Wanting Sign Sign Type Voter Notes Neighborhood
{% csrf_token %} {% for voter in household.voters_who_want_sign %} {% endfor %}
{{ 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.
{% if households.has_other_pages %} {% endif %}
{% endblock %}