diff options
Diffstat (limited to 'app/lib/django_comments/templates')
-rw-r--r-- | app/lib/django_comments/templates/comments/form.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/django_comments/templates/comments/form.html b/app/lib/django_comments/templates/comments/form.html index 858d5eb..939f7e1 100644 --- a/app/lib/django_comments/templates/comments/form.html +++ b/app/lib/django_comments/templates/comments/form.html @@ -9,7 +9,7 @@ {% if field.errors %}{{ field.errors }}{% endif %} <p {% if field.errors %} class="error"{% endif %} - {% ifequal field.name "honeypot" %} style="display:none;"{% endifequal %}> + {% if field.name == "honeypot" %} style="display:none;"{% endif %}> {{ field.label_tag }} {{ field }} </p> {% endif %} |