58 lines
2.2 KiB
HTML
58 lines
2.2 KiB
HTML
{# bs5ok #}
|
|
{% 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 review directorates{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Active Review Directorates</h1>
|
|
<table class="table table-sm table-striped tablesorter">
|
|
<thead>
|
|
<tr>
|
|
<th data-sort="team">Team</th>
|
|
<th data-sort="name">Name</th>
|
|
<th data-sort="area">Area</th>
|
|
<th data-sort="ad">AD</th>
|
|
<th data-sort="secretaries">Secretaries</th>
|
|
<th data-sort="chairs">Chairs</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for group in dirs %}
|
|
<tr>
|
|
<td>
|
|
<a href="{% url "ietf.group.views.group_home" acronym=group.acronym %}">{{ group.acronym }}</a>
|
|
</td>
|
|
<td>{{ group.name }}</td>
|
|
<td>
|
|
<a href="{% url "ietf.group.views.group_home" acronym=group.parent.acronym %}">{{ group.parent.acronym }}</a>
|
|
</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 %} |