{% extends 'base_with_margins.html' %} {% load extras %} {% load highlight %} {% block title %} {% if request.GET.q %} Search results for '{{ request.GET.q }}' {% else %} Search Legislation {% endif %} {% endblock %} {% block content %}

Search {{CITY_NAME}} Legislation

{% if selected_facets %}

Clear all filters

{% endif %} {% with facet_name='inferred_status' facet_label='Status' item_list=facets.fields.inferred_status selected_list=selected_facets.inferred_status %} {% include 'partials/search_filter.html' %} {% endwith %} {% with facet_name='bill_type' facet_label='Legislation Type' item_list=facets.fields.bill_type selected_list=selected_facets.bill_type %} {% include 'partials/search_filter.html' %} {% endwith %} {% if facets.fields.topics %} {% with facet_name='topics' facet_label='Topic' item_list=facets.fields.topics selected_list=selected_facets.topics %} {% include 'partials/search_filter.html' %} {% endwith %} {% endif %} {% with facet_name='controlling_body' facet_label='Controlling Body' item_list=facets.fields.controlling_body selected_list=selected_facets.controlling_body %} {% include 'partials/search_filter.html' %} {% endwith %} {% with facet_name='sponsorships' facet_label='Sponsor' item_list=facets.fields.sponsorships selected_list=selected_facets.sponsorships %} {% include 'partials/search_filter.html' %} {% endwith %} {% if facets.fields.legislative_session %} {% if facets.fields.legislative_session|length > 1 %} {% with facet_name='legislative_session' facet_label='Legislative Session' item_list=facets.fields.legislative_session selected_list=selected_facets.legislative_session %} {% include 'partials/search_filter.html' %} {% endwith %} {% endif %} {% endif %}
{% if query %}

{{ paginator.count }} legislation result{{ paginator.count|pluralize }} for '{{ request.GET.q }}' {% with selected_facets=request.GET.selected_facets %} {% if selected_facets %} {% else %} {% endif %} {% endwith %}

{% endif %} {% for result in page.object_list %}

{{ result.object.friendly_name }} {{ result.object.inferred_status | inferred_status_label | safe }}

{% if query %}

{{ result.highlighted.text.0|safe }}

{% else %}

{{result.object.listing_description | short_blurb}}

{% endif %}

{{result.object.last_action_date|date:'n/d/Y'}} - {{result.object.current_action.description | remove_action_subj }}

{% if result.object.primary_sponsor %}

{{result.object.primary_sponsor.person.name}}

{% endif %}

{% if result.object.topics %} {% for tag in result.object.topics %} {{ tag }}   {% endfor %}
{% elif result.object.pseudo_topics %} {% for tag in result.object.pseudo_topics %} {{ tag | committee_topic_only }}   {% endfor %}
{% endif %}

{% empty %}

This site has data from the current legislative session. If you're searching for something older, you can browse the {{ CITY_COUNCIL_NAME }} Legistar site .

We'd be happy to help you find what you're looking for - contact us!

{% endfor %}
{% if page.has_previous or page.has_next %}
{% endif %} {% endblock %} {% block extra_js %} {% endblock %}