diff options
author | bnewbold <bnewbold@manus.(none)> | 2007-02-24 21:26:12 -0800 |
---|---|---|
committer | bnewbold <bnewbold@manus.(none)> | 2007-02-24 21:26:12 -0800 |
commit | ba3cdfee16ca65da218c7a9724b6d3a7a770fc81 (patch) | |
tree | 80aabd842f4e12a22ed9592ebfdf103481a76973 /bn_django/templates/comments/freeform.html | |
parent | cfeab0aadf7ba357a997c4a0203bcf4176ecc0d3 (diff) | |
download | bnewnet-ba3cdfee16ca65da218c7a9724b6d3a7a770fc81.tar.gz bnewnet-ba3cdfee16ca65da218c7a9724b6d3a7a770fc81.zip |
work on integrating comments universally
Diffstat (limited to 'bn_django/templates/comments/freeform.html')
-rw-r--r-- | bn_django/templates/comments/freeform.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/bn_django/templates/comments/freeform.html b/bn_django/templates/comments/freeform.html new file mode 100644 index 0000000..f0d00b9 --- /dev/null +++ b/bn_django/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 %} |