{% load extras %}

{% if legislation.abstract %}

{{ legislation.description }}

{{ legislation.abstract }}

{% else %}

{{ legislation.description }}

{% endif %}

View the source for this page


{% if request.GET.view == 'actions' or request.GET.view == 'desc' or request.GET.view == None %} {% if actions %}
{% for action in actions %} {% endfor %}
Date Action Legislative body
{{action.date|date:'M d, Y'}} {{action.description | remove_action_subj}} {{action.organization.link_html|safe}}
{% if legislation.unique_related_events %}

Relevant Events

{% for event in legislation.unique_related_events %}

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

{% endfor %} {% endif %} {% endif %} {% endif %} {% if request.GET.view == 'sponsors' %} {% if legislation.sponsorships.all %}
{% for s in legislation.sponsorships.all %} {% endfor %}
Sponsor {% if MUNICIPAL_DISTRICT_NAME %} {{MUNICIPAL_DISTRICT_NAME}} {% else %} District {% endif %} Role
{{s.person.name}}
{{ s.person.link_html | safe }} {{s.person.current_council_seat}} {% if s.is_primary %} Primary sponsor {% else %} Sponsor {% endif %}
{% else %}

This legislation has no sponsors

{% endif %} {% endif %} {% if request.GET.view == 'documents' %} {% if legislation.attachments %}
{% else %}

This legislation has no attachments

{% endif %} {% endif %} {% if request.GET.view == 'text' %} {% if legislation.full_text != "" %}
{{ legislation.full_text|safe }}
{% elif legislation.full_text_doc_url %}
{% endif %} {% endif %}