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

{{committee.name}}

{% if committee_description %}

{{committee_description}}

{% endif %} {% if committee.source_url %}

View the source for this page

{% endif %}
{% if request.GET.view != 'members' %}

Recent Legislative Activity

{% if committee.recent_activity %}
{% for action in committee.recent_activity %} {% endfor %}
Date Legislation Action
{{action.date|date:'n/d/Y'}} {{action.bill.friendly_name}} {{action.description | remove_action_subj}}
Show more Show fewer
{% else %}

No recent legislative activity

{% endif %} {% if committee.recent_events %}

Recent Committee Events

{% for event in committee.recent_events %}

{{event.start_time | date:'n/d/Y' }} - {{event.link_html | safe}}

{% endfor %} Show more Show fewer {% endif %} {% endif %} {% if request.GET.view == 'members' %}

Committee Members

{% for membership in committee.chairs %} {% endfor %} {% for membership in committee.non_chair_members %} {% endfor %}
Committee Member {% if MUNICIPAL_DISTRICT_NAME %} {{MUNICIPAL_DISTRICT_NAME}} {% else %} District {% endif %} Role
{{membership.person.name}}
{{ membership.person.link_html | safe }} {{membership.person.current_council_seat}} Chairperson
{{membership.person.name}}
{{ membership.person.link_html | safe }} {{membership.person.current_council_seat}} Member
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}