diff options
author | luxagraf <sng@luxagraf.net> | 2014-12-20 03:22:07 +0000 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2014-12-20 03:22:07 +0000 |
commit | 7d48c53b8daca447fc7f9d98e058a1388e47e3cd (patch) | |
tree | 44de30ede130a9bf6533306550c785d1da2c9259 /design/templates/comments | |
parent | 85a40f8902cf5f56a0bde2fd79acbeeab2cac683 (diff) |
fixed some bugs with comments app, removed csrf protection from comments
Diffstat (limited to 'design/templates/comments')
-rw-r--r-- | design/templates/comments/form.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/design/templates/comments/form.html b/design/templates/comments/form.html index 776a543..35391f0 100644 --- a/design/templates/comments/form.html +++ b/design/templates/comments/form.html @@ -1,7 +1,7 @@ {% load comments i18n %} <div class="comment--form--wrapper"> <p class="comment--form--header">Comments?</p> -<form action="{% comment_form_target %}" method="post" class="comment--form">{% csrf_token %} +<form action="{% comment_form_target %}" method="post" class="comment--form"> {% if next %}<div><input type="hidden" name="next" value="{{ next }}" /></div>{% endif %} <input type="hidden" name="rder" value="{{ form.instance.content_object.get_absolute_url }}" /> {% for field in form %} |