{% extends "base_with_margins.html" %} {% load extras %} {% load staticfiles %} {% block title %}{{CITY_COUNCIL_NAME}} Committees{% endblock %} {% block content %}
Committee | Chairperson(s) | Members |
---|---|---|
{{ committee.name | committee_topic_only }} |
{% for chair in committee.chairs.all %}
{{ chair.person.link_html | safe }} {% endfor %} |
{{ committee.memberships.all | length }} |
Subcommittee | Chairperson(s) | Members |
---|---|---|
{{ committee.name | committee_topic_only}} |
{% for chair in committee.chairs.all %}
{{ chair.person.link_html | safe }} {% endfor %} |
{{ committee.memberships.all | length }} |
Task Force | Chairperson(s) | Members |
---|---|---|
{{ committee.name }} |
{% for chair in committee.chairs.all %}
{{ chair.person.link_html | safe }} {% endfor %} |
{{ committee.memberships.all | length }} |
Most of the Council's legislative work is done in committee. It is there that proposed legislation is initially debated and the members of other government branches and the public are given a chance to comment.
Each Council Member serves on at least three of the Council's standing committees, sub- and select committees and panels. The standing committees must meet at least once a month unless the Charter mandates otherwise. Committee assignments are made by the Committee on Rules, Privileges and Elections and voted on by the entire Council.
{% if taskforces %}{{CITY_COUNCIL_NAME}} is currently composed of {{committees | length }} Committees, {{subcommittees | length }} Subcommittees and {{taskforces | length }} Task Forces.
{% else %}{{CITY_COUNCIL_NAME}} is currently composed of {{committees | length }} Committees and {{subcommittees | length }} Subcommittees.
{% endif %}