datatracker/ietf/templates/doc/draft/request_publication.html
Ole Laursen b4dfae121b Integrate old patch for warning on the request for publication page if
intended std level and consensus is not filled in for the draft before
sending it (as per discussion with Alice Russo) - the consensus check
is skipped for ISE drafts
 - Legacy-Id: 7103
2014-01-10 17:16:12 +00:00

47 lines
1.6 KiB
HTML

{% extends "base.html" %}
{% block title %}Request publication for {{ doc }}{% endblock %}
{% block morecss %}
p.warning { color: #a00; font-weight: bold; }
form.request-publication #id_subject,
form.request-publication #id_body { width: 50em; }
form.request-publication #id_body { height: 30em; }
{% endblock %}
{% block content %}
<h1>Request publication for {{ doc }}</h1>
<p>Send a publication request to the RFC Editor for {{ doc }} and move
it to the <em>{{ next_state.name }}</em> stream state.</p>
{% if not doc.intended_std_level %}
<p class="warning">Note: Intended RFC status is not set for the document.</p>
{% endif %}
{% if doc.stream_id != "ise" and not consensus_filled_in %}
<p class="warning">Note: Consensus status is not set for the document.</p>
{% endif %}
<p>Please edit the message and remove any parts in brackets you do not
fill in. For independent submissions, see the <a
href="http://www.rfc-editor.org/indsubs.html">guidelines</a>.</p>
<form class="request-publication" action="" method="post">{% csrf_token %}
<table>
<tr><td>From:</td> <td>{{ message.frm }}</td></tr>
<tr><td>To:</td> <td>{{ message.to }}</td></tr>
<tr><td>Subject:</td> <td>{{ form.subject }} {{ form.subject.errors }}</td></tr>
<tr><td style="vertical-align: top">Message:</td> <td>{{ form.body }} {{ form.body.errors }}</td></tr>
<tr class="actions"><td></td>
<td>
<a class="button" href="{% url "doc_view" name=doc.name %}">Cancel</a>
<input class="button" name="reset" type="submit" value="Reset"/>
<input class="button" type="submit" value="Send request to the RFC Editor"/>
</td>
</tr>
</table>
</form>
{% endblock %}