summaryrefslogtreecommitdiff
path: root/app/lib/django_comments/templates
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2022-12-02 14:16:08 -0600
committerluxagraf <sng@luxagraf.net>2022-12-02 14:16:08 -0600
commit656505098a80e653319236ac302fd6dd9f485b33 (patch)
tree03fe2f552496e2a2b459f5227dc11273d1b94211 /app/lib/django_comments/templates
parentbf2fa131cba6430ba93f584f4693c3444e0c455f (diff)
reset migrations to zero out some changes (deleting the geodata for
example)
Diffstat (limited to 'app/lib/django_comments/templates')
-rw-r--r--app/lib/django_comments/templates/comments/form.html2
-rw-r--r--app/lib/django_comments/templates/comments/preview.html2
2 files changed, 2 insertions, 2 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 %}
diff --git a/app/lib/django_comments/templates/comments/preview.html b/app/lib/django_comments/templates/comments/preview.html
index e335466..9fd5f1c 100644
--- a/app/lib/django_comments/templates/comments/preview.html
+++ b/app/lib/django_comments/templates/comments/preview.html
@@ -27,7 +27,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 %}