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

View Signs

View households that already have a yard sign.

Filters
Reset
Households with Signs
{{ households.paginator.count }} Households Found
{% for household in households %} {% empty %} {% endfor %}
Household Address Voters with 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_with_sign %} {{ voter.first_name }} {{ voter.last_name }} {% endfor %}
{{ household.sign_types_display }} {% for voter in household.voters_with_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 %}