forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagenda_conflict_doc.html
More file actions
52 lines (44 loc) · 1.65 KB
/
Copy pathagenda_conflict_doc.html
File metadata and controls
52 lines (44 loc) · 1.65 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
{# Copyright The IETF Trust 2015, All Rights Reserved #}{% load origin %}{% origin %}
{% load ietf_filters ballot_icon %}
<div class="pull-right">{% ballot_icon doc %}</div>
<dl class="dl-horizontal">
{% with doc.conflictdoc as conflictdoc %}
<dt>Conflict review</dt>
<dd>
<a href="{{doc.get_href}}">
<span class="fa fa-file"></span>
</a>
<a href="{% url "ietf.doc.views_doc.document_main" name=doc.canonical_name %}">{{ doc.canonical_name }}</a>
<br>
<i>{{ doc.title }}</i>
</dd>
<dt>{{ conflictdoc.stream }} {{ conflictdoc.intended_std_level }}</dt>
<dd>
<a href="{{settings.IETF_ID_ARCHIVE_URL}}{{ conflictdoc.name }}-{{ conflictdoc.rev }}.txt">
<span class="fa fa-file"></span>
</a>
<a href="{% url "ietf.doc.views_doc.document_main" name=conflictdoc.name %}">{{ conflictdoc.name }}</a>
<br>
<i>{{ conflictdoc.title }}</i>
</dd>
{% if conflictdoc.note %}
<dt>Note</dt><dd>{{ conflictdoc.note|linebreaksbr }}</dd>
{% endif %}
<dt>Token</dt><dd>{{ doc.ad }}</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 conflictdoc.ipr %}
<dt>IPR</dt>
<dd>
{% for ipr in conflictdoc.ipr %}
{% if ipr.disclosure.state_id == "posted" %}
<a href="/ipr/{{ ipr.disclosure.id }}/">{{ ipr.disclosure.title }}</a><br>
{% endif %}
{% endfor %}
</dd>
{% endif %}
{% endwith %}
</dl>