28 lines
902 B
HTML
28 lines
902 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 you wish to view submission status for:
|
|
</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>
|
|
Note that the status page only displays the status of an Internet-Draft with a posting 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 %}
|