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

Neighborhood Summary

Household counts by neighborhood based on active filters.

Back to Door Visits
{% if district_filter or neighborhood_filter or city_filter or address_filter %}
Active Filters: {% if district_filter %}District: {{ district_filter }}{% endif %} {% if neighborhood_filter %}{% if district_filter %}, {% endif %}Neighborhood: {{ neighborhood_filter }}{% endif %} {% if city_filter %}{% if district_filter or neighborhood_filter %}, {% endif %}City: {{ city_filter }}{% endif %} {% if address_filter %}{% if district_filter or neighborhood_filter or city_filter %}, {% endif %}Address: {{ address_filter }}{% endif %}
{% endif %}
Neighborhoods
{{ neighborhoods|length }} Neighborhoods
{% for item in neighborhoods %} {% empty %} {% endfor %}
Neighborhood Unvisited Households Action
{{ item.display_name }} {{ item.count }} View Households
No data found for the current filters.
{% endblock %}