{% extends "base_with_margins.html" %} {% load extras %} {% load staticfiles %} {% block title %}{{event.name}}{% endblock %} {% block content %}

back to {{ CITY_VOCAB.EVENTS }}

{{event.name}}

{{event.description}}

{{event.start_time | date:"D n/d/Y"}}
{{event.start_time | date:"g:i a"}}
{{event.location_name}}

View on the {{CITY_VOCAB.SOURCE}} website


{% if participants %}

Participants

{% for participant in participants %} {{participant.link_html | safe}}
{% endfor %}

{% endif %} {% if event.clean_agenda_items %}

Agenda

    {% for agenda_item in event.clean_agenda_items %} {% if agenda_item.description|lower != 'page break' %}
  1. {% if agenda_item.related_bills.all %} {{agenda_item.related_bills.first.bill.friendly_name}}
    {% endif %} {{agenda_item.description}}
  2. {% endif %} {% endfor %}

{% endif %} {% if event.documents.all %}

Attachments

{% for document in event.documents.all %} {{document.note}}
{% endfor %}

{% endif %}
{% endblock %}