forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagenda_doc.html
More file actions
73 lines (61 loc) · 2.14 KB
/
agenda_doc.html
File metadata and controls
73 lines (61 loc) · 2.14 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
{# Copyright The IETF Trust 2016, All Rights Reserved #}{% load origin %}{% origin %}
{% load ietf_filters ballot_icon %}
<div class="pull-right">{% ballot_icon doc %}</div>
<dl class="dl-horizontal">
<dt>
{% if doc.stream %}
{{ doc.stream }} stream
{% endif %}
</dt>
<dd class="no-table">
{% with doc.rfc_number as rfc_number %}
{% if rfc_number %}
<a href="https://www.rfc-editor.org/rfc/rfc{{rfc_number}}/">
{% else %}
<a href="{{doc.get_href}}">
{% endif %}
<span class="fa fa-file"></span></a>
{% endwith %}
<a href="{% url "ietf.doc.views_doc.document_main" name=doc.canonical_name %}">{{ doc.canonical_name }}</a>
{% if doc.has_rfc_editor_note %}
<a href="{% url "ietf.doc.views_doc.document_main" name=doc.canonical_name %}writeup/"> <em>(Has RFC Editor Note)</em></a>
{% endif %}
</dd>
<dt>{{ doc.intended_std_level }}</dt><dd><b>{{ doc.title }}</b></dd>
{% if doc.note %}
<dt>Note</dt><dd>{{ doc.note|linebreaksbr }}</dd>
{% endif %}
<dt>Token</dt><dd>{{ doc.ad }} ({{ doc.area_acronym|upper }} area)</dd>
{% with doc.active_defer_event as defer %}
{% if defer %}
<dt>Deferred by</dt><dd>{{ defer.by }} on {{ defer.time|date:"Y-m-d" }}</dd>
{% endif %}
{% endwith %}
{% if doc.iana_review_state %}
<dt>IANA review</dt><dd>{{ doc.iana_review_state }}<dd>
{% endif %}
{% if doc.consensus %}
<dt>Consensus</dt><dd>{{ doc.consensus }}</dd>
{% endif %}
{% if doc.review_assignments %}
<dt>Reviews</dt>
<dd>
{% for review_assignment in doc.review_assignments %}
{% include "doc/review_assignment_summary.html" with current_doc_name=doc.name current_rev=doc.rev %}
{% endfor %}
</dd>
{% endif %}
{% if doc.lastcall_expires %}
<dt>Last call expires</dt><dd>{{ doc.lastcall_expires|date:"Y-m-d" }}</dd>
{% endif %}
{% if doc.ipr %}
<dt>IPR</dt>
<dd>
{% for ipr in doc.ipr %}
{% if ipr.disclosure.state_id == "posted" %}
<a href="/ipr/{{ ipr.disclosure.id }}/">{{ ipr.disclosure.title }}</a><br>
{% endif %}
{% endfor %}
</dd>
{% endif %}
</dl>