forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubmit_to_iesg.html
More file actions
102 lines (102 loc) · 4.42 KB
/
submit_to_iesg.html
File metadata and controls
102 lines (102 loc) · 4.42 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
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load django_bootstrap5 person_filters %}
{% block title %}Publication request for {{ doc.name }}-{{ doc.rev }}{% endblock %}
{% block content %}
{% origin %}
<h1>
Publication request
<br>
<small class="text-muted">{{ doc.name }}-{{ doc.rev }}</small>
</h1>
<p class="my-3">
Please verify the following information:
</p>
<table class="table table-sm table-borderless">
<tbody>
<tr {% if warn.intended_std_level %}class="table-warning"{% endif %}>
<th class="text-nowrap">Intended status level</th>
<td {% if warn.intended_std_level %}class="text-danger"{% endif %}>
{% if warn.intended_std_level %}<i class="bi bi-exclamation-circle"></i>{% endif %}
{{ doc.intended_std_level }}
</td>
</tr>
<tr>
<th class="text-nowrap">Responsible AD</th>
<td>{% person_link ad %}</td>
</tr>
<tr {% if warn.shepherd %}class="table-warning"{% endif %}>
<th class="text-nowrap">Document shepherd</th>
<td {% if warn.shepherd %}class="text-danger"{% endif %}>
{% if warn.shepherd %}<i class="bi bi-exclamation-circle"></i>{% endif %}
{% if doc.shepherd %}
{% person_link doc.shepherd.person %}
{% else %}
(None)
{% endif %}
</td>
</tr>
<tr {% if warn.shepherd_writeup %}class="table-warning"{% endif %}>
<th class="text-nowrap">Shepherd write-up exists</th>
<td {% if warn.shepherd_writeup %}class="text-danger"{% endif %}>
{% if warn.shepherd_writeup %}<i class="bi bi-exclamation-circle"></i>{% endif %}
{% if shepherd_writeup %}
Yes
{% else %}
No
{% endif %}
</td>
</tr>
<tr>
<th class="text-nowrap">Also notify</th>
<td>
{% if notify %}
{{ notify }}
{% else %}
(None)
{% endif %}
</td>
</tr>
<tr {% if warn.tags %}class="table-warning"{% endif %}>
<th class="text-nowrap">Annotation tags</th>
<td {% if warn.tags %}class="text-danger"{% endif %}>
{% if warn.tags %}<i class="bi bi-exclamation-circle"></i>{% endif %}
{% if not tags %}
(None)
{% else %}
{% for tag in tags %}
{{ tag }}{% if not forloop.last %},{% endif %}
{% endfor %}
{% endif %}
</td>
</tr>
</tbody>
</table>
{% if warn %}
<p class="alert alert-warning my-3">
<i class="bi bi-exclamation-circle"></i>
indicates the document might not be ready for submission. Please check each instance carefully to see if changes need to be made to the document's state before submitting.
</p>
{% endif %}
Upon submission:
<ul>
<li>the document will be placed into the IESG '{{ target_state.iesg }}' state</li>
<li>the document will be placed into the working group '{{ target_state.wg }}' state</li>
{% if not ad == doc.ad %}<li>the responsible AD will be set as above</li>{% endif %}
{% if not notify == doc.notify %}<li>the document's state change notification list will be set as above</li>{% endif %}
<li>an entry will be made noting the publication request in the document's history</li>
<li>an email message will be sent to the working group chairs, the secretariat, and everyone listed above</li>
</ul>
<form method="post">
{% csrf_token %}
<input type="submit"
class="btn btn-warning"
name="confirm"
value="Request publication">
<input type="submit"
class="btn btn-secondary float-end"
name="cancel"
value="Back">
</form>
{% endblock %}