64 lines
2 KiB
HTML
64 lines
2 KiB
HTML
{% 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>{{ doc }}</small></h1>
|
|
|
|
<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="https://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 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|join:', ' }}" disabled>
|
|
</div>
|
|
|
|
{% if message.cc %}
|
|
<div class="form-group">
|
|
<label>Cc</label>
|
|
<input class="form-control" type="text" placeholder="{{ message.cc|join:', ' }}" disabled>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% bootstrap_form form %}
|
|
|
|
|
|
|
|
<button type="submit" class="btn btn-danger">Email RFC Editor</button>
|
|
<button type="reset" class="btn btn-warning">Reset</button>
|
|
<a class="btn btn-primary pull-right" href="{% url "ietf.doc.views_doc.document_main" name=doc.name %}">Back</a>
|
|
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|