Ticket #2168: freeform.2.html

File freeform.2.html, 710 bytes (added by kanashii@…, 18 years ago)

Updated

Line 
1{% load i18n %}
2{% if display_form %}
3<form action="/comments/postfree/" method="post">
4 <fieldset>
5 <dl>
6 <dt><label for="id_person_name">{% trans "Your name" %}:</label></dt>
7 <dd><input type="text" name="person_name" id="id_person_name" /></dd>
8
9 <dt><label for="id_comment">{% trans "Comment" %}:</label></dt>
10 <dd><textarea name="comment" id="id_comment" rows="10" cols="60"></textarea></dd>
11 </dl>
12 <input type="hidden" name="options" value="{{ options }}" />
13 <input type="hidden" name="target" value="{{ target }}" />
14 <input type="hidden" name="gonzo" value="{{ hash }}" />
15 <input type="submit" name="preview" value="{% trans "Preview comment" %}" />
16 </fieldset>
17</form>
18{% endif %}
Back to Top