Skip to content

Commit 85c24b8

Browse files
committed
Added a missing template.
- Legacy-Id: 15317
1 parent 2daef52 commit 85c24b8

1 file changed

Lines changed: 58 additions & 0 deletions

File tree

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{% extends "base.html" %}
2+
{# Copyright The IETF Trust 2015, All Rights Reserved #}
3+
{% load origin staticfiles %}
4+
5+
{% block pagehead %}
6+
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
7+
{% endblock %}
8+
9+
{% block title %}Active review directorates{% endblock %}
10+
11+
12+
{% block content %}
13+
{% origin %}
14+
<h1>Active Review Directorates</h1>
15+
<table class="table table-condensed table-striped tablesorter">
16+
<thead>
17+
<tr>
18+
<th>Team</th>
19+
<th>Name</th>
20+
<th>Area</th>
21+
<th>AD</th>
22+
<th>Secretaries</th>
23+
<th>Chairs</th>
24+
</tr>
25+
</thead>
26+
<tbody>
27+
{% for group in dirs %}
28+
<tr>
29+
<td><a href="{% url "ietf.group.views.group_home" acronym=group.acronym %}">{{ group.acronym }}</a></td>
30+
<td>{{ group.name }}</td>
31+
<td><a href="{% url "ietf.group.views.group_home" acronym=group.parent.acronym %}">{{ group.parent.acronym }}</a></td>
32+
<td>
33+
{% for ad in group.ads %}
34+
<a href="{% url 'ietf.person.views.profile' email_or_name=ad.person.name %}">{{ ad.person.plain_name }}
35+
</a><a href="mailto:{{ ad.email.address }}"><span class="fa fa-envelope-o tiny"></span></a>{% if not forloop.last %}, {% endif %}
36+
{% endfor %}
37+
</td>
38+
<td>
39+
{% for secretary in group.secretaries %}
40+
<a href="{% url 'ietf.person.views.profile' email_or_name=secretary.person.name %}">{{ secretary.person.plain_name }}</a>
41+
<a href="mailto:{{ secretary.email.address }}"><span class="fa fa-envelope-o tiny"></span></a> {% if not forloop.last %}, {% endif %}
42+
{% endfor %}
43+
</td>
44+
<td>
45+
{% for chair in group.chairs %}
46+
<a href="{% url 'ietf.person.views.profile' email_or_name=chair.person.name %}">{{ chair.person.plain_name }}</a>
47+
<a href="mailto:{{ chair.email.address }}"><span class="fa fa-envelope-o tiny"></span></a>{% if not forloop.last %}, {% endif %}
48+
{% endfor %}
49+
</td>
50+
</tr>
51+
{% endfor %}
52+
</tbody>
53+
</table>
54+
{% endblock %}
55+
56+
{% block js %}
57+
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
58+
{% endblock %}

0 commit comments

Comments
 (0)