{% extends "committees/base.html" %} {% block page-class %}gov{% endblock %} {% block title %}Governance at {% endblock %} {% load humanize markup typogrify committee_tags eventy_tags %} {% block body %}

Governance

{% get_committee_groups active order 10 as board %}

{{board}}

{{board.groupphoto_set.latest.caption|typogrify|markdown}} {{board.description|typogrify|markdown}}

Members

{% for t in board.current_terms %} {% if forloop.first %}{% endif %} {% endfor %}

View agendas and minutes

Committees

{% get_committee_groups active order 20 as committees %} {% if committees %} {% for c in committees %}
{{c}}
{% for t in c.current_terms %}
{{t.office.title}} {{t.person}}
{% endfor %} {% for p in c.members.all %}
{{p}}
{% endfor %}
{% endfor %} {% endif %}
{% endblock %}