forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathannouncements.html
More file actions
86 lines (69 loc) · 2.83 KB
/
announcements.html
File metadata and controls
86 lines (69 loc) · 2.83 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{% 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 "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
{% endblock %}
{% block bodyAttrs %}data-spy="scroll" data-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-condensed 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 hidden-print bs-docs-sidebar" id="affix">
<ul class="nav nav-pills nav-stacked small" data-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 "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
{% endblock %}