{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin static %} {% block pagehead %} {% endblock %} {% block title %}Active teams{% endblock %} {% block content %} {% origin %}

Active teams

{% for group in teams %} {% endfor %}
Team Name Chairs
{{ group.acronym }} {{ group.name }} {% for chair in group.chairs %} {{ chair.person.plain_name }} {% if not forloop.last %} , {% endif %} {% endfor %}
{% endblock %} {% block js %} {% endblock %}