summaryrefslogtreecommitdiff
path: root/design/templates/comments/form.html
diff options
context:
space:
mode:
Diffstat (limited to 'design/templates/comments/form.html')
-rw-r--r--design/templates/comments/form.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/design/templates/comments/form.html b/design/templates/comments/form.html
new file mode 100644
index 0000000..f8bb18d
--- /dev/null
+++ b/design/templates/comments/form.html
@@ -0,0 +1,18 @@
+{% load comments i18n crispy_forms_tags fluent_comments_tags %}{% load url from future %}
+
+{% if not form.target_object|comments_are_open %}
+ <p>{% trans "Comments are closed." %}</p>
+{% else %}
+ <form action="{% comment_form_target %}" method="post" class="js-comments-form comments-form form-horizontal"
+ data-ajax-action="{% url 'comments-post-comment-ajax' %}">{% csrf_token %}
+ {% if next %}<div><input type="hidden" name="next" value="{{ next }}" /></div>{% endif %}
+
+ {{ form|crispy }}
+
+ <div class="form-actions">
+ <input type="submit" name="post" class="btn btn-primary" value="{% trans "Post" %}" />
+ <input type="submit" name="preview" class="btn" value="{% trans "Preview" %}" />
+ {% ajax_comment_tags %}
+ </div>
+ </form>
+{% endif %} \ No newline at end of file