28 lines
903 B
HTML
28 lines
903 B
HTML
{% extends "submit/submit_base.html" %}
|
|
{% block title %}Submission status{% endblock %}
|
|
|
|
{% block pagehead %}
|
|
{{ form.media }}
|
|
{% endblock %}
|
|
|
|
{% block submit_content %}
|
|
<p>
|
|
Please enter the filename of the Internet-Draft who's status you wish to view:
|
|
</p>
|
|
|
|
<form method="post" action="">
|
|
{% if error %}<div style="color: red;">{{ error }}</div>{% endif %}
|
|
<input type="text" name="filename" value="{{ filename|default:"draft-" }}" />
|
|
<input type="submit" value="Find status" />
|
|
</form>
|
|
|
|
<p>
|
|
<strong>
|
|
Please note that the Status page only displays the status of an Internet-Draft whose posting is still in progress or an Internet-Draft that has been successfully posted. </strong>
|
|
</p>
|
|
<p>
|
|
The IETF is an organized activity of the <a href="http://www.isoc.org">Internet Society</a>
|
|
<br>Please send problem reports to <a href="mailto:ietf-action@ietf.org">ietf-action@ietf.org</a>.
|
|
</p>
|
|
{% endblock %}
|