forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactive_rgs.html
More file actions
49 lines (49 loc) · 1.76 KB
/
active_rgs.html
File metadata and controls
49 lines (49 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{% 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 IRTF research groups{% endblock %}
{% block content %}
{% origin %}
<h1>Active IRTF research groups</h1>
<h2 class="mt-4">IRTF chair</h2>
<p>
{% person_link irtf.chair.person %}
</p>
<h2 class="mt-4">Active research groups</h2>
<a class="btn btn-primary"
href="{% url "ietf.group.views.all_status" %}">Status reports</a>
<a class="btn btn-primary"
href="{% url "ietf.group.views.chair_photos" group_type="rg" %}">Chair photos</a>
<table class="table table-striped table-sm tablesorter">
<thead>
<tr>
<th data-sort="group">Group</th>
<th data-sort="name">Name</th>
<th data-sort="chairs">Chairs</th>
</tr>
</thead>
<tbody>
{% for group in groups %}
<tr>
<td>
<a href="{% url "ietf.group.views.group_home" group_type=group.type_id acronym=group.acronym %}">
{{ group.acronym }}
</a>
</td>
<td>{{ group.name }}</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 %}