{% load extras %}

{% if request.GET.view == 'desc' or request.GET.view == None %} {% if legislation.abstract %}

Description

{{ legislation.description }}

{{ legislation.abstract }}

{% else %}

{{ legislation.description }}

{% endif %}

View the source for this page

{% endif %} {% if request.GET.view == 'actions' %} {% if actions %}

History

{% for action in actions %} {% endfor %}
Date Action Legislative body
{{action.date|date:'n/d/Y'}} {{action.description | remove_action_subj}} {{action.organization.link_html|safe}}
{% endif %} {% endif %} {% if request.GET.view == 'sponsors' %} {% if legislation.sponsorships.all %}

Sponsors

{% for s in legislation.sponsorships.all %} {% endfor %}
Sponsor District Role
{{s.person.name}} {{ s.person.link_html | safe }} {{s.person.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.documents.all %}

Attachments

{% else %}

This legislation has no documents

{% endif %} {% endif %} {% if request.GET.view == 'text' and legislation.full_text != "" %}

Full Text

{{ legislation.full_text|safe }}
{% endif %}