62 lines
2.3 KiB
HTML
62 lines
2.3 KiB
HTML
{# bs5ok #}
|
|
{% 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-muted">{{ 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">
|
|
<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 class="mt-3" method="post">
|
|
{% csrf_token %}
|
|
<div class="mb-3">
|
|
<label class="form-label">From</label>
|
|
<input class="form-control"
|
|
type="text"
|
|
placeholder="{{ message.frm }}"
|
|
disabled>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label class="form-label">To</label>
|
|
<input class="form-control"
|
|
type="text"
|
|
placeholder="{{ message.to|join:', ' }}"
|
|
disabled>
|
|
</div>
|
|
{% if message.cc %}
|
|
<div class="mb-3">
|
|
<label class="form-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-secondary float-end"
|
|
href="{% url "ietf.doc.views_doc.document_main" name=doc.name %}">Back</a>
|
|
</form>
|
|
{% endblock %} |