forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocument_conflict_review.html
More file actions
151 lines (151 loc) · 6.33 KB
/
document_conflict_review.html
File metadata and controls
151 lines (151 loc) · 6.33 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load static %}
{% load ietf_filters %}
{% load person_filters %}
{% load textfilters %}
{% block title %}{{ doc.title }}{% endblock %}
{% block content %}
{% origin %}
{{ top|safe }}
{% include "doc/revisions_list.html" %}
<div id="timeline"></div>
{% if doc.rev != latest_rev %}
<div class="alert alert-warning my-3">The information below is for an old version of the document.</div>
{% endif %}
<table class="table table-sm table-borderless mb-3">
<tbody class="meta border-top">
<tr>
<th class="col-1">Document</th>
<th class="col-2">
{% if doc.get_state_slug not in approved_states %}
Proposed conflict review
{% else %}
Conflict review
{% endif %}
</th>
<td class="edit"></td>
<td class="col-9">
<a href="{% url "ietf.doc.views_doc.document_main" name=conflictdoc.canonical_name %}">
{% if conflictdoc.get_state_slug == 'rfc' %}
{{ conflictdoc.canonical_name|upper }}
{% else %}
{{ conflictdoc.canonical_name }}-{{ conflictdoc.rev }}
{% endif %}
</a>
<span class="badge bg-info">{{ conflictdoc.stream }} stream</span>
{% if snapshot %}<span class="badge bg-warning">Snapshot</span>{% endif %}
</td>
</tr>
<tr>
<td></td>
<th>Last updated</th>
<td class="edit"></td>
<td>{{ doc.time|date:"Y-m-d" }}</td>
</tr>
<tr>
<td></td>
<th>
<a href="{% url 'ietf.doc.views_help.state_help' type='conflict-review' %}">State</a>
</th>
<td class="edit">
{% if not snapshot and user|has_role:"Area Director,Secretariat" %}
<a title="{{ doc.get_state.desc }}"
class="btn btn-primary btn-sm float-end"
href="{% url 'ietf.doc.views_conflict_review.change_state' name=doc.name %}">
Edit
</a>
{% endif %}
</td>
<td>{{ doc.get_state.name }}</td>
</tr>
</tbody>
<tbody class="meta border-top">
<tr>
<th>IESG</th>
<th>Responsible AD</th>
<td class="edit">
{% if not snapshot and user|has_role:"Area Director,Secretariat" and doc.get_state_slug not in approved_states %}
<a class="btn btn-primary btn-sm float-end"
href="{% url 'ietf.doc.views_conflict_review.edit_ad' name=doc.name %}">
Edit
</a>
{% endif %}
</td>
<td>{% person_link doc.ad %}</td>
</tr>
{% if not snapshot %}
<tr>
<td></td>
<th>Telechat date</th>
<td class="edit">
{% if not snapshot and user|has_role:"Area Director,Secretariat" and doc.get_state_slug not in approved_states %}
<a class="btn btn-primary btn-sm float-end"
href="{% url 'ietf.doc.views_doc.telechat_date;conflict-review' name=doc.name %}">
Edit
</a>
{% endif %}
</td>
<td>
{% if not telechat %}
<span class="text-muted">(None)</span>
{% else %}
On agenda of {{ telechat.telechat_date|date:"Y-m-d" }} IESG telechat
{% if doc.returning_item %}(returning item){% endif %}
{% endif %}
{% if ballot_summary %}
<br>
<i>{{ ballot_summary }}</i>
{% endif %}
</td>
</tr>
{% endif %}
<tr>
<td></td>
<th>Send notices to</th>
<td class="edit">
{% if not snapshot and user|has_role:"Area Director,Secretariat" and doc.get_state_slug not in approved_states %}
<a class="btn btn-primary btn-sm float-end"
href="{% url 'ietf.doc.views_doc.edit_notify;conflict-review' name=doc.name %}">
Edit
</a>
{% endif %}
</td>
<td>{{ doc.notify|linkify }}</td>
</tr>
</tbody>
</table>
{% if not snapshot and user|has_role:"Area Director,Secretariat" and doc.get_state_slug != 'apprsent' %}
<a class="btn btn-primary"
href="{% url 'ietf.doc.views_conflict_review.submit' name=doc.name %}">
Change conflict review text
</a>
{% endif %}
{% if not snapshot and user|has_role:"Area Director,Secretariat" %}
{% if request.user|has_role:"Secretariat" %}
{% if doc.get_state_slug == 'appr-reqnopub-pend' or doc.get_state_slug == 'appr-noprob-pend' %}
<a class="btn btn-primary"
href="{% url 'ietf.doc.views_conflict_review.approve_conflict_review' name=doc.name %}">
Approve conflict review
</a>
{% endif %}
{% endif %}
{% endif %}
{% if doc.rev %}
<div class="card mt-5">
<div class="card-header">
{{ doc.name }}-{{ doc.rev }}
</div>
<div class="card-body">
<pre>{{ content|maybewordwrap|linkify|urlize_ietf_docs }}</pre>
</div>
</div>
{% endif %}
{% endblock %}
{% block js %}
<script src="{% static 'ietf/js/d3.js' %}">
</script>
<script src="{% static 'ietf/js/document_timeline.js' %}">
</script>
{% endblock %}