datatracker/ietf/templates/doc/draft/change_stream.html
2013-12-17 12:50:24 +00:00

30 lines
605 B
HTML

{% extends "base.html" %}
{% block title %}Change stream for {{ doc }}{% endblock %}
{% block morecss %}
form.change-stream select {
width: 22em;
}
form.change-stream .actions {
text-align: right;
padding-top: 10px;
}
{% endblock %}
{% block content %}
<h1>Change stream for {{ doc }}</h1>
<form class="change-stream" action="" method="post">{% csrf_token %}
<table>
{{ form.as_table }}
<tr>
<td colspan="2" class="actions">
<a href="{{ doc.get_absolute_url }}">Back</a>
<input type="submit" value="Save"/>
</td>
</tr>
</table>
</form>
{% endblock %}