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
82 lines (67 loc) · 3.03 KB
/
submit_to_iesg.html
File metadata and controls
82 lines (67 loc) · 3.03 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
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load bootstrap3 %}
{% block title %}
Publication request for {{doc.name}}-{{doc.rev}}
{% endblock %}
{% block content %}
{% origin %}
<h1>Publication request<br><small>{{doc.name}}-{{doc.rev}}</small></h1>
<p>
Please verify the following information:
</p>
<table class="table table-condensed">
<tr {% if warn.intended_std_level %}class="warning"{% endif %}>
<th class="text-nowrap">Intended status level</th>
<td>{% if warn.intended_std_level %}<span class="fa fa-warning"></span>{% endif %}</td>
<td>{{doc.intended_std_level}}</td>
</tr>
<tr>
<th class="text-nowrap">Responsible AD</th>
<td></td>
<td>{{ad}}</td>
</tr>
<tr {% if warn.shepherd %}class="warning"{% endif %}>
<th class="text-nowrap">Document shepherd</th>
<td>{% if warn.shepherd %}<span class="fa fa-warning"></span>{% endif %}</td>
<td>{% if doc.shepherd %}{{ doc.shepherd.person }}{% endif %}</td>
</tr>
<tr {% if warn.shepherd_writeup %}class="warning"{% endif %}>
<th class="text-nowrap">Shepherd write-up exists</th>
<td>{% if warn.shepherd_writeup %}<span class="fa fa-warning"></span>{% endif %}</td>
<td>{%if shepherd_writeup %}Yes{%else%}No{%endif%}</td>
</tr>
<tr>
<th class="text-nowrap">Also notify</th>
<td></td>
<td>{% if notify %}{{notify}}{%else%}(None){%endif%}</td>
</tr>
<tr {% if warn.tags %}class="warning"{% endif %}>
<th class="text-nowrap">Annotation tags</th>
<td>{% if warn.tags %}<span class="fa fa-warning"></span>{% endif %}</td>
<td>{% if not tags %}(None){%else%}{% for tag in tags %}{{ tag }}{% if not forloop.last%}, {%endif%}{% endfor %}{% endif %}</td>
</tr>
</table>
{% if warn %}
<p class="alert alert-warning"><span class="fa fa-warning"></span> 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 %}
<p>
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>
</p>
<form method="post">
{% csrf_token %}
{% buttons %}
<input type="submit" class="btn btn-warning" name="confirm" value="Request publication">
<input type="submit" class="btn btn-default pull-right" name="cancel" value="Back">
{% endbuttons %}
</form>
{% endblock %}