{% extends "base_with_margins.html" %} {% load extras %} {% load static %} {% load adv_cache %} {% block title %}{{CITY_COUNCIL_NAME}} Committees{% endblock %} {% block content %} {% cache 600 committees_wrapper 'committees' %}

City Council Committees


{% for committee in committees %} {% endfor %}
Committee Chairperson(s) Members
{{ committee.name | committee_topic_only }} {% for chair in committee.chairs %} {{ chair.person.link_html|safe }} {% endfor %} {{ committee.all_members | length }}
{% if subcommittees %}

Subcommittees

{% for committee in subcommittees %} {% if committee.memberships.all|length > 0 %} {% endif %} {% endfor %}
Subcommittee Chairperson(s) Members
{{ committee.name | committee_topic_only}} {% for chair in committee.chairs %} {{ chair.person.link_html|safe }} {% endfor %} {{ committee.memberships.all | length }}
{% endif %} {% if taskforces %}

Task Forces

{% for committee in taskforces %} {% if committee.memberships.all|length > 0 %} {% endif %} {% endfor %}
Task Force Chairperson(s) Members
{{ committee.name }} {% for chair in committee.chairs.all %} {{ chair.person.link_html|safe }} {% endfor %} {{ committee.memberships.all | length }}
{% endif %}

What do committees do?

{{ ABOUT_BLURBS.COMMITTEES | safe }} {% if taskforces %}

{{CITY_COUNCIL_NAME}} is currently composed of {{committees.count }} Committees, {{subcommittees | length }} Subcommittees and {{taskforces | length }} Task Forces.

{% else %}

{{CITY_COUNCIL_NAME}} is currently composed of {{committees | length }} Committees{% if subcommittees %} and {{subcommittees | length }} Subcommittees{% endif %}.

{% endif %}

More on how City Council works »

{% endcache %} {% endblock %} {% block extra_js %} {% endblock %}