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

34 lines
658 B
HTML

{% extends "base.html" %}
{% block title %}Add comment on {{ doc }}{% endblock %}
{% block morecss %}
form.add-comment #id_comment {
width: 600px;
height: 300px;
}
form.add-comment .actions {
padding-top: 20px;
}
{% endblock %}
{% block content %}
<h1>Add comment on {{ doc }}</h1>
<p>The comment will be added to the history trail.</p>
<form class="add-comment" action="" method="post">{% csrf_token %}
<table>
{{ form.as_table }}
<tr>
<td></td>
<td class="actions">
<a href="{% url "doc_history" name=doc.name %}">Back</a>
<input type="submit" value="Add comment"/>
</td>
</tr>
</table>
</form>
{% endblock %}