{% extends "base.html" %} {% load eb %} {% block title %}Streets{% if city %} in {{ city.name }}{% endif %}{% endblock %} {% block extrahead %} {% endblock %} {% block content %}
{% if city %}

Streets

{% endif %}

Streets{% if city %} in {{ city.name }}{% endif %}

Choose a street to find recent news near an individual block. You can also browse by locations {% if example_loctype %}such as {{ example_loctype|lower }}{% endif %}.

{% regroup street_list by street_slug|upper|slice:":1" as alpha_list %} {% for current_letter in alpha_list %}

{{ current_letter.grouper }}

{% for letter in alpha_list %}{% ifequal letter.grouper current_letter.grouper %}{{ letter.grouper }}{% else %}{{ letter.grouper|upper }}{% endifequal %}{% endfor %} ↑ Top

{% comment %}{% endcomment %} {% for street_bunch in current_letter.list|bunch:"20" %} {% endfor %} {% endfor %}
{% endblock %}