{% extends "base_with_margins.html" %} {% load extras %} {% load staticfiles %} {% block title %}{{ legislation.friendly_name }}{% endblock %} {% block content %} {% if legislation %}


{{ legislation.friendly_name }} {{ legislation.inferred_status | inferred_status_label | safe }}

{% if legislation.topics %}

{% for tag in legislation.topics %} {{ tag }} {% endfor %}

{% endif %}

{% block description %} {% if legislation.abstract %}

{{ legislation.description }}

{{ legislation.abstract }}

{% else %}

{{ legislation.description }}

{% endif %} {% endblock %}

View on the {{CITY_VOCAB.SOURCE}} website

{% if legislation.sponsorships.all %}

Sponsors

{% for s in legislation.sponsorships.all %} {% if s.is_primary %} {% endif %} {% endfor %} {% for s in legislation.sponsorships.all %} {% if not s.is_primary %} {% endif %} {% endfor %}
{% if legislation.sponsorships.all|length > 1 %} Sponsors ({{legislation.sponsorships.all|length}}) {% else %} Sponsor {% endif %} {{CITY_VOCAB.MUNICIPAL_DISTRICT}}
{{s.person.name}}
{{ s.person.link_html | safe }} Primary Sponsor {{s.person.current_council_seat}}
{{s.person.name}}
{{ s.person.link_html | safe }} {{s.person.current_council_seat}}
{% endif %} {% if actions %}

History

{% for action in actions %} {% endfor %}
Date Action Legislative body
{{action.date|date:'n/d/y'}} {{action.description | remove_action_subj}} {% if action.related_organization %} to {{action.related_organization.link_html|safe}} {% endif %} {{action.organization.link_html|safe}}
{% endif %} {% if legislation.unique_related_upcoming_events %}

Upcoming {{ CITY_VOCAB.EVENTS }}

{% for event in legislation.unique_related_upcoming_events %}

{{event.start_time | date:'M d, Y' }} - {{event.link_html | safe}}

{% endfor %}
{% endif %} {% if legislation.addresses %}

Locations mentioned

{% endif %} {% if legislation.attachments %}

Attachments ({{ legislation.attachments | length }})

{% endif %} {% if legislation.full_text != "" %}

Legislation text

{{ legislation.full_text|safe }}
{% elif legislation.full_text_doc_url %}

Legislation text

Download PDF

{% endif %}
{% if DISQUS_SHORTNAME %}

Comments

{% endif %}
{% else %}

Legislation not found

{% endif %} {% endblock %} {% block extra_js %} {% endblock %}