forked from ietf-tools/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheligible.html
More file actions
41 lines (41 loc) · 1.62 KB
/
eligible.html
File metadata and controls
41 lines (41 loc) · 1.62 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
{% extends public|yesno:"nomcom/nomcom_public_base.html,nomcom/nomcom_private_base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load django_bootstrap5 textfilters person_filters %}
{% load static %}
{% block subtitle %}- Eligible People{% endblock %}
{% block nomcom_content %}
{% origin %}
<h2>Eligible People for {{ nomcom.group }}</h2>
<table class="table table-sm table-striped tablesorter">
<thead>
<tr>
<th scope="col"></th>
<th scope="col" data-sort="last">Last name</th>
<th scope="col" data-sort="first">First name</th>
<th scope="col" data-sort="plain">Plain name</th>
<th scope="col" data-sort="page">Profile page</th>
<th scope="col" data-sort="email">Email addresses</th>
</tr>
</thead>
{% if eligible_persons %}
<tbody>
{% for p in eligible_persons %}
<tr>
<td>{{ forloop.counter }}</td>
<td>{{ p.last_name }}</td>
<td>{{ p.first_name }}</td>
<td>{{ p.ascii_name }}</td>
<td>{% person_link p %}</td>
<td>
{% for e in p.email_set.all %}
{{ e.address|linkify }}{% if not forloop.last %},{% endif %}
{% endfor %}
</td>
</tr>
{% endfor %}
</tbody>
{% endif %}
</table>
}
{% endblock %}