File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 %}
You can’t perform that action at this time.
0 commit comments