{% 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' %}
Committee | Chairperson(s) | Members |
---|---|---|
{{ committee.name | committee_topic_only }} | {% for chair in committee.chairs %} {{ chair.person.link_html|safe }} {% endfor %} | {{ committee.all_members | length }} |
Subcommittee | Chairperson(s) | Members |
---|---|---|
{{ committee.name | committee_topic_only}} | {% for chair in committee.chairs %} {{ 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.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 %}