datatracker/ietf/templates/nomcom/eligible.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

47 lines
1.7 KiB
HTML

{% 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 pagehead %}
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
{% endblock %}
{% block nomcom_content %}
{% origin %}
<h2>Eligible People for {{ nomcom.group }}</h2>
<table class="table table-sm table-striped tablesorter">
<thead>
<tr>
<th></th>
<th data-sort="last">Last name</th>
<th data-sort="first">First name</th>
<th data-sort="plain">Plain name</th>
<th data-sort="page">Profile page</th>
<th 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 %}
{% block js %}
<script src="{% static "ietf/js/list.js" %}"></script>
{% endblock %}