{% 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 }} |
{{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{% if subcommittees %} and {{subcommittees | length }} Subcommittees{% endif %}.
{% endif %}