datatracker/ietf/templates/submit/search_submission.html
Ole Laursen a589115ff4 Summary: Reindent all HTML files to follow the previous convention (no
tabs) and kill the scripts block in favour of just using a js block with
a script tag (which is easier to understand for context-sensitive
modes such as web-mode in Emacs). Also fix a couple of details, e.g.
missing semicolons in JS snippets.
 - Legacy-Id: 9096
2015-02-17 18:01:04 +00:00

34 lines
744 B
HTML

{% extends "submit/submit_base.html" %}
{% load bootstrap3 %}
{% block title %}Submission status{% endblock %}
{% block submit_content %}
{% bootstrap_messages %}
<p>
Please enter the name of the Internet-Draft you wish to view the
submission status of.
</p>
<form role="form" method="post">
{% csrf_token %}
{% if error %}
<p class="alert alert-danger">{{ error }}</p>
{% endif %}
<div class="form-group">
<label>I-D name</label>
<input type="text" class="form-control" placeholder="draft-..." name="name" value="{{ name|default:"" }}">
</div>
{% buttons %}
<input class="btn btn-primary" type="submit" value="See status">
{% endbuttons %}
</form>
{% endblock %}