Conflicts: ietf/doc/templatetags/ietf_filters.py ietf/doc/views_charter.py ietf/templates/doc/charter/edit_notify.html ietf/templates/doc/charter/edit_telechat_date.html ietf/templates/doc/document_ballot_content.html ietf/templates/doc/document_history.html ietf/templates/doc/edit_notify.html ietf/templates/doc/edit_telechat_date.html ietf/templates/doc/notify.html ietf/templates/group/concluded_groups.html - Legacy-Id: 8429
54 lines
1.5 KiB
HTML
54 lines
1.5 KiB
HTML
{% extends "ietf.html" %}
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}Request publication for {{ doc }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Request publication<br><small>{{ doc }}</small></h1>
|
|
|
|
{% bootstrap_messages %}
|
|
|
|
<p class="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="http://www.rfc-editor.org/indsubs.html">guidelines</a>.
|
|
</p>
|
|
|
|
{% if not doc.intended_std_level %}
|
|
<p class="alert alert-warning">
|
|
<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">
|
|
<b>Note:</b> Consensus status is not set for the document.
|
|
</p>
|
|
{% endif %}
|
|
|
|
<form role="form" method="post">
|
|
{% csrf_token %}
|
|
|
|
<div class="form-group">
|
|
<label>From</label>
|
|
<input class="form-control" type="text" placeholder="{{ message.frm }}" disabled>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>To</label>
|
|
<input class="form-control" type="text" placeholder="{{ message.to }}" disabled>
|
|
</div>
|
|
|
|
{% bootstrap_form form %}
|
|
|
|
{% buttons %}
|
|
<button type="submit" class="btn btn-danger">Email RFC Editor</button>
|
|
<button type="reset" class="btn btn-warning">Reset</button>
|
|
<a class="btn btn-default pull-right" href="{% url "doc_view" name=doc.name %}">Back</a>
|
|
{% endbuttons %}
|
|
</form>
|
|
|
|
{% endblock %}
|