datatracker/ietf/templates/nomcom/announcements.html
Lars Eggert a8764f225f Track CSS class name changes in bs5.
- Legacy-Id: 19663
2021-11-15 16:49:09 +00:00

87 lines
3.5 KiB
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015-2020, All Rights Reserved #}
{% load origin %}
{% load ietf_filters static %}
{% block pagehead %}
<link rel="stylesheet" href="{% static "ietf/css/datatables.css" %}">
{% endblock %}
{% block bodyAttrs %}data-bs-spy="scroll" data-bs-target="#affix"{% endblock %}
{% block title %}NomCom{% endblock %}
{% block content %}
{% origin %}
<div class="row">
<div class="col-md-10">
<h1>NomCom</h1>
<p>
<b>Current committee chair:</b>
<a href="mailto:{{ curr_chair.email.address }}">{{ curr_chair.person.plain_name }}</a>
</p>
{% for regime in regimes %}
<h2 class="anchor-target" 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>
<a href="mailto:{{ regime.chair.person.email_address }}">{{ regime.chair.person.plain_name }}</a>
</p>
<table class="table table-sm table-striped tablesorter">
<thead>
<tr>
<th>Date</th>
<th>Subject</th>
<th>Sent to</th>
</tr>
</thead>
<tbody>
{% for m in regime.announcements|dictsortreversed:"time" %}
<tr>
<td class="text-nowrap">{{ 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="anchor-target" id="historical">Historical information</h2>
<ul>
<li><a href="{% url "ietf.nomcom.views.history" %}">NomCom Members (by year)</a></li>
</ul>
<h2 class="anchor-target" 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>
</div>
<div class="col-md-2 d-print-none bs-docs-sidebar" id="affix">
<ul class="nav nav-pills nav-stacked small" data-bs-spy="affix">
{% for regime in regimes %}
<li><a href="#{{ regime.group.start_year }}">{{ regime.group.start_year }}/{{ regime.group.end_year }}</a></li>
{% endfor %}
<li><a href="#historical">Historical</a></li>
<li><a href="#references">References</a></li>
</ul>
</div>
</div>
{% endblock %}
{% block js %}
<script src="{% static "ietf/js/datatables.js" %}"></script>
{% endblock %}