datatracker/ietf/templates/group/active_ags.html

50 lines
1.9 KiB
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin static person_filters %}
{% block pagehead %}
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
{% endblock %}
{% block title %}Active area groups{% endblock %}
{% block content %}
{% origin %}
<h1>Active area groups</h1>
<table class="my-3 table table-sm table-striped tablesorter">
<thead>
<tr>
<th scope="col" data-sort="team">Team</th>
<th scope="col" data-sort="name">Name</th>
<th scope="col" data-sort="ad">AD</th>
<th scope="col" data-sort="secretaries">Secretaries</th>
<th scope="col" data-sort="chairs">Chairs</th>
</tr>
</thead>
<tbody>
{% for group in groups %}
<tr>
<td>
<a href="{% url "ietf.group.views.group_home" acronym=group.acronym %}">{{ group.acronym }}</a>
</td>
<td>{{ group.name }}</td>
<td>
{% for ad in group.ads %}
{% person_link ad.person %}{% if not forloop.last %},{% endif %}
{% endfor %}
</td>
<td>
{% for secretary in group.secretaries %}
{% person_link secretary.person %}{% if not forloop.last %},{% endif %}
{% endfor %}
</td>
<td>
{% for chair in group.chairs %}
{% person_link chair.person %}{% if not forloop.last %},{% endif %}
{% endfor %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}
{% block js %}
<script src="{% static "ietf/js/list.js" %}"></script>
{% endblock %}