forked from ietf-tools/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactive_wgs.html
More file actions
83 lines (83 loc) · 3.76 KB
/
active_wgs.html
File metadata and controls
83 lines (83 loc) · 3.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin static group_filters person_filters %}
{% block pagehead %}
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
{% endblock %}
{% block title %}Active IETF working groups{% endblock %}
{% block content %}
{% origin %}
<h1>Active IETF working groups</h1>
<div class="buttonlist">
<a class="btn btn-primary"
href="{% url "ietf.group.views.concluded_groups" %}">Concluded WGs</a>
<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="wg" %}">Chair photos</a>
</div>
{% for area in areas %}
<h2 class="mt-5" id="{{ area.acronym|upper }}">{{ area.name }} ({{ area.acronym|upper }})</h2>
{% if area.ads_and_pre_ads %}
<h3 class="mt-3 navskip">
{{ area.acronym|upper }} Area Director{{ area.ads_and_pre_ads|pluralize }} (AD{{ area.ads_and_pre_ads|pluralize }})
</h3>
<ul class="list-unstyled">
{% for ad in area.ads_and_pre_ads %}
<li>
{% person_link ad.person %}
{% if ad.name == "pre-ad" %}<span class="badge rounded-pill text-bg-info">Incoming AD</span>{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}
{% if area.groups %}
<h3 class="mt-3 navskip">
{{ area.acronym|upper }} active WG{{ area.groups|pluralize }}
<span class="text-body-secondary">({{ area.groups.count }})</span>
</h3>
<table class="table table-sm table-striped tablesorter">
<thead>
<tr>
<th scope="col" data-sort="group">Group</th>
<th scope="col" data-sort="responsible">Responsible AD</th>
<th scope="col" data-sort="name">Name</th>
<th scope="col" data-sort="chairs">Chairs</th>
</tr>
</thead>
<tbody>
{% for group in area.groups %}
<tr>
<td>
<div id="{{ group.acronym }}">
<a href="{% url "ietf.group.views.group_home" group_type=group.type_id acronym=group.acronym %}">
{{ group.acronym }}
</a>
</div>
</td>
<td>
{% if group.ad_role %}
{% person_link group.ad_role.person %}
{% endif %}
</td>
<td>{{ group.name }}</td>
<td>
{% for chair in group.chairs %}
{% role_person_link chair %}{% if not forloop.last %},{% endif %}
{% endfor %}
{% if group.ad_out_of_area %}
(Assigned AD: {% role_person_link group.ad_role %})
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<h3 class="mt-3 navskip">No active {{ area.acronym|upper }} WGs</h3>
{% endif %}
{% endfor %}
{% endblock %}
{% block js %}
<script src="{% static "ietf/js/list.js" %}"></script>
{% endblock %}