forked from ietf-tools/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequest_publication.html
More file actions
63 lines (63 loc) · 2.42 KB
/
request_publication.html
File metadata and controls
63 lines (63 loc) · 2.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
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load django_bootstrap5 %}
{% block title %}Request publication for {{ doc }}{% endblock %}
{% block content %}
{% origin %}
<h1>
Request publication
<br>
<small class="text-body-secondary">{{ doc }}</small>
</h1>
<p class="my-3 alert alert-info">
Send a publication request to the RFC Editor for {{ doc }} and move it to the <i>{{ next_state.name }}</i> stream state.
Please edit the message and remove any parts in brackets you do not
fill in. For independent submissions, see the
<a href="https://www.rfc-editor.org/indsubs.html">guidelines</a>.
</p>
{% if not doc.intended_std_level %}
<p class="alert alert-warning my-3">
<b>Note:</b> Intended RFC status is not set for the document.
</p>
{% endif %}
{% if doc.stream_id != "ise" and not consensus_filled_in %}
<p class="alert alert-warning my-3">
<b>Note:</b> Consensus status is not set for the document.
</p>
{% endif %}
<form class="mt-3" method="post">
{% csrf_token %}
<div class="mb-3">
<label for="message-frm" class="form-label">From</label>
<input class="form-control"
type="text"
id="message-frm"
value="{{ message.frm }}"
readonly>
</div>
<div class="mb-3">
<label for="message-to" class="form-label">To</label>
<input class="form-control"
type="text"
id="message-to"
value="{{ message.to }}"
readonly>
</div>
{% if message.cc %}
<div class="mb-3">
<label for="message-cc" class="form-label">Cc</label>
<input class="form-control"
type="text"
id="message-cc"
value="{{ message.cc }}"
readonly>
</div>
{% endif %}
{% bootstrap_form form %}
<button type="submit" class="btn btn-primary">Email RFC Editor</button>
<button type="reset" class="btn btn-warning">Reset</button>
<a class="btn btn-secondary float-end"
href="{% url "ietf.doc.views_doc.document_main" name=doc.name %}">Back</a>
</form>
{% endblock %}