summaryrefslogtreecommitdiffstats
path: root/webapp/django/contrib/comments/templates/comments/freeform.html
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/django/contrib/comments/templates/comments/freeform.html')
-rw-r--r--webapp/django/contrib/comments/templates/comments/freeform.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/webapp/django/contrib/comments/templates/comments/freeform.html b/webapp/django/contrib/comments/templates/comments/freeform.html
new file mode 100644
index 0000000000..f0d00b91c7
--- /dev/null
+++ b/webapp/django/contrib/comments/templates/comments/freeform.html
@@ -0,0 +1,13 @@
+{% load i18n %}
+{% if display_form %}
+<form action="/comments/postfree/" method="post">
+<p><label for="id_person_name">{% trans "Your name:" %}</label> <input type="text" id="id_person_name" name="person_name" /></p>
+<p><label for="id_comment">{% trans "Comment:" %}</label><br /><textarea name="comment" id="id_comment" rows="10" cols="60"></textarea></p>
+<p>
+<input type="hidden" name="options" value="{{ options }}" />
+<input type="hidden" name="target" value="{{ target }}" />
+<input type="hidden" name="gonzo" value="{{ hash }}" />
+<input type="submit" name="preview" value="{% trans "Preview comment" %}" />
+</p>
+</form>
+{% endif %}