summaryrefslogtreecommitdiff
path: root/gstudio/templates/comments/gstudio/nodetype/form.html
diff options
context:
space:
mode:
Diffstat (limited to 'gstudio/templates/comments/gstudio/nodetype/form.html')
-rw-r--r--gstudio/templates/comments/gstudio/nodetype/form.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/gstudio/templates/comments/gstudio/nodetype/form.html b/gstudio/templates/comments/gstudio/nodetype/form.html
new file mode 100644
index 00000000..8d5e27d4
--- /dev/null
+++ b/gstudio/templates/comments/gstudio/nodetype/form.html
@@ -0,0 +1,22 @@
+{% load comments i18n %}
+
+<form action="{% comment_form_target %}" method="post">
+ {% csrf_token %}
+ <fieldset>
+ <input type="hidden" name="next" value="{% url gstudio_discussion_success %}"/>
+ <legend>{% trans "Post your comment" %}</legend>
+ {% for field in form %}
+ {% if field.is_hidden %}{{ field }}{% else %}
+ <div{% if field.errors %} class="error"{% endif %}{% ifequal field.name "honeypot" %} style="display:none;"{% endifequal %}>
+ {{ field.label_tag }}
+ {% if field.errors %}{{ field.errors }}{% else %}<br />{% endif %}
+ {{ field }}
+ </div>
+ {% endif %}
+ {% endfor %}
+ <p class="submit">
+ <input type="submit" name="submit" class="submit-post" value="{% trans "Post" %}" />
+ <input type="submit" name="preview" class="submit-preview" value="{% trans "Preview" %}" />
+ </p>
+ </fieldset>
+</form>