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

71 lines
2.6 KiB
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015-2020, All Rights Reserved #}
{% load origin %}
{% load ietf_filters static person_filters %}
{% block pagehead %}
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
{% endblock %}
{% block title %}NomCom{% endblock %}
{% block content %}
{% origin %}
<h1>NomCom</h1>
<p>
<b>Current committee chair:</b>
{% person_link curr_chair.person %}
</p>
{% for regime in regimes %}
<h2 class="mt-5" id="{{ regime.group.start_year }}">
Messages from {{ regime.group.start_year }}/{{ regime.group.end_year }}
</h2>
{# use person email address here rather than the generic nomcom-chair@ietf.org #}
<p>
<b>Committee chair:</b>
{% person_link regime.chair.person %}
</p>
<table class="table table-sm table-striped tablesorter">
<thead>
<tr>
<th data-sort="date">Date</th>
<th data-sort="subject">Subject</th>
<th data-sort="sent">Sent to</th>
</tr>
</thead>
<tbody>
{% for m in regime.announcements|dictsortreversed:"time" %}
<tr>
<td>{{ m.time|date:"Y-m-d" }}</td>
<td>
<a href="{% url "ietf.message.views.message" message_id=m.id %}">{{ m.subject }}</a>
</td>
<td>{{ m.to_name }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endfor %}
<h2 class="mt-5" id="historical">Historical information</h2>
<ul>
<li>
<a href="{% url "ietf.nomcom.views.history" %}">NomCom Members (by year)</a>
</li>
</ul>
<h2 class="mt-5" id="references">References</h2>
<ul>
<li>
<a href="https://datatracker.ietf.org/doc/rfc2026/">The Internet Standards Process (RFC 2026)</a>
</li>
<li>
<a href="https://datatracker.ietf.org/doc/rfc8713/">
IAB, IESG, IETF Trust, and IETF LLC Selection, Confirmation, and Recall Process: Operation of the IETF Nominating and Recall Committees (RFC 8713) (Also BCP10)
</a>
</li>
<li>
<a href="https://datatracker.ietf.org/doc/rfc3797/">
Publicly Verifiable Nominations Committee (NomCom) Random Selection (RFC 3797)
</a>
</li>
</ul>
{% endblock %}
{% block js %}
<script src="{% static "ietf/js/list.js" %}"></script>
{% endblock %}