forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpast_documents.html
More file actions
68 lines (67 loc) · 2.68 KB
/
past_documents.html
File metadata and controls
68 lines (67 loc) · 2.68 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
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin static %}
{% load ballot_icon %}
{% load ietf_filters person_filters %}
{% block pagehead %}
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
{% endblock %}
{% block title %}Documents on recent agendas{% endblock %}
{% block content %}
{% origin %}
<h1>
Documents on recent agendas
<br>
<small class="text-muted">in states
{% for state in states %}
{{ state.name }}{% if not forloop.last %},{% endif %}
{% endfor %}
</small>
</h1>
{% include "iesg/nav.html" with active="past_documents" %}
<table class="table table-sm table-striped tablesorter">
<thead>
<tr>
<th data-sort="doc">Document</th>
<th data-sort="date">Telechat Date</th>
<th data-sort="status">Status</th>
<th data-sort="ad">Responsible AD</th>
<th data-sort="discusses">Discusses</th>
</tr>
</thead>
{% if docs %}
<tbody>
{% for doc in docs %}
<tr class="{% if doc.by_me %}
byme
{% endif %}
{% if doc.for_me %}
forme
{% endif %}">
<td>
{{ doc.displayname_with_link }}
<br>
<span class="fw-bold">{{ doc.title }}</span>
</td>
<td>{{ doc.telechat }}</td>
{% include "doc/search/status_columns.html" %}
<td>{% person_link doc.ad nowrap=False %}</td>
<td>
{% for p in doc.blocking_positions %}
{% if p.is_old_pos %}<span class="text-muted">{% endif %}
{% person_link p.balloter nowrap=False %}
({% if p.discuss_time %}{{ p.discuss_time|timesince_days }} days ago{% endif %}
{% if doc.get_state_url != "rfc" and p.rev != doc.rev %}for -{{ p.rev }}{% endif %})
<br>
{% if p.is_old_pos %}</span>{% endif %}
{% endfor %}
</td>
</tr>
{% endfor %}
</tbody>
{% endif %}
</table>
{% endblock %}
{% block js %}
<script src="{% static "ietf/js/list.js" %}"></script>
{% endblock %}