blob: 3d3678ee22e9747564092ec58da2dc901bfee0a4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{% load i18n %}
<form action="/comments/postfree/" method="post">
<p><textarea name="comment" id="id_comment" rows="10" cols="60"></textarea></p>
<input class="submit" type="submit" name="preview" value="{% trans "Preview comment" %}" />
<p> <label for="id_person_name">{% trans "Your name:" %}</label> <input type="text" id="id_person_name" name="person_name" />
<input type="hidden" name="options" value="{{ options }}" />
<input type="hidden" name="target" value="{{ target }}" />
<input type="hidden" name="gonzo" value="{{ hash }}" />
</p>
</form>
|