forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomplete_review.html
More file actions
158 lines (158 loc) · 6.7 KB
/
complete_review.html
File metadata and controls
158 lines (158 loc) · 6.7 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
152
153
154
155
156
157
158
{% extends "base.html" %}
{# Copyright The IETF Trust 2016, All Rights Reserved #}
{% load origin django_bootstrap5 static person_filters textfilters %}
{% block title %}
{% if revising_review %}
Revise
{% elif assignment %}
Complete
{% else %}
Submit unsolicited
{% endif %}
review of {{ doc.name }}
{% endblock %}
{% block pagehead %}
<link rel="stylesheet" href="{% static 'ietf/css/datepicker.css' %}">
{% endblock %}
{% block content %}
{% origin %}
<h1>
{% if revising_review %}
Revise
{% elif assignment %}
Complete
{% else %}
Submit unsolicited
{% endif %}
review
<br>
<small class="text-muted">{{ doc.name }}</small>
</h1>
{% if assignment %}
<table class="my-3 table table-sm table-borderless">
<tbody>
<tr>
<th>Review type:</th>
<td>{{ assignment.review_request.team.acronym }} - {{ assignment.review_request.type }} review</td>
</tr>
<tr>
<th>Requested version for review:</th>
<td>{{ assignment.review_request.requested_rev|default:"Current" }}</td>
</tr>
<tr>
<th>Requested:</th>
<td>{{ assignment.review_request.time|date:"Y-m-d" }}</td>
</tr>
<tr>
<th>Reviewer:</th>
<td>{% person_link assignment.reviewer.person %}</td>
</tr>
</tbody>
</table>
{% else %}
<p class="alert alert-info my-3">
You are submitting an <strong>unsolicited</strong> review for this document for the {{ team }}.
<strong>This process should only be used for unsolicited reviews.</strong>
A review request and assignment will be created automatically upon submitting this review.
</p>
{% endif %}
{% if assignment and not revising_review %}
<p>
The review findings should be made available here and the review
posted to the mailing list. If you enter the findings below, the
system will post the review for you. If you already have posted
the review, you can try to let the system find the link to the
archive and retrieve the email body.
</p>
<p>
If you enter the review below, the review will be sent
to {{ review_to|join:", "|linkify }}
{% if review_cc %}, with a CC to {{ review_cc|join:", "|linkify }}{% endif %}
.
</p>
{% elif assignment %}
<p>
You can revise this review by entering the results below.
</p>
{% endif %}
<form class="complete-review " method="post" enctype="multipart/form-data">
{% csrf_token %}
{% bootstrap_form form layout="horizontal" %}
<button type="submit" class="btn btn-primary">
{% if revising_review %}
Revise
{% else %}
Complete
{% endif %}
review
</button>
{% if assignment %}
<a class="btn btn-secondary float-end"
href="{% url "ietf.doc.views_review.review_request" name=doc.canonical_name request_id=assignment.review_request.pk %}">
Back
</a>
{% else %}
<a class="btn btn-secondary float-end" href="{{ doc.get_absolute_url }}">Back</a>
{% endif %}
<div class="template" style="display:none">
{% if mail_archive_query_urls %}
<div class="mail-archive-search">
<div class="offset-md-2 col-md-10">
<label class="form-label">Search mail archive subjects for:</label>
<div class="input-group mb-3">
<input type="text"
class="query-input form-control"
value="{{ mail_archive_query_urls.query }}">
<button type="button" class="search btn btn-primary">Search</button>
</div>
<div class="retrieving visually-hidden my-3">
<div class="spinner-border spinner-border-sm" role="status"></div>
Searching...
</div>
<div class="results visually-hidden my-3">
<p>
Select one of the following messages to automatically pre-fill link and content:
</p>
<div class="list-group"></div>
</div>
<div class="error alert alert-warning visually-hidden my-3">
<span class="content"> </span>
<span class="visually-hidden try-yourself">
(searched for
<a class="query-url" href="#">"<span class="query"> </span>"</a>,
corresponding
<a class="query-data-url" href="#">export</a>).
</span>
You have to fill in link and content yourself.
</div>
</div>
</div>
{% else %}
<div class="mail-archive-search">
<small class="text-muted">Mailing list does not have a recognized ietf.org archive. Auto-searching disabled.</small>
</div>
{% endif %}
</div>
{% spaceless %}
<div class="template" style="display:none">
<button type="button" class="mail-archive-search-result list-group-item">
<small class="date float-end"> </small>
<small class="from float-end"> </small>
<span class="subject"> </span>
</button>
</div>
{% endspaceless %}
</form>
{% endblock %}
{% block js %}
<script src="{% static 'ietf/js/datepicker.js' %}"></script>
<script>
{% if assignment %}
var searchMailArchiveUrl = "{% url "ietf.doc.views_review.search_mail_archive" name=doc.name assignment_id=assignment.pk %}";
{% else %}
var searchMailArchiveUrl = "{% url "ietf.doc.views_review.search_mail_archive" name=doc.name acronym=team.acronym %}";
{% endif %}
var isReviewer = {{ is_reviewer|yesno:'true,false' }};
</script>
<script src="{% static 'ietf/js/complete-review.js' %}"></script>
{% endblock %}