summaryrefslogtreecommitdiff
path: root/templates/comments
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2022-09-05 10:44:43 -0500
committerluxagraf <sng@luxagraf.net>2022-09-05 10:44:43 -0500
commitf547a33e18f3c3b6de199d72e2c6fcfbb94de11b (patch)
tree125a0dc0c3c6a76b03b6105fd4408dc8d2a6440f /templates/comments
parent7df9d1fcf70d55165cb89536980d153ed59932ab (diff)
essays: cleaned up templates, fixed some stray bugs
Diffstat (limited to 'templates/comments')
-rw-r--r--templates/comments/form.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/comments/form.html b/templates/comments/form.html
index 129de90..fba222b 100644
--- a/templates/comments/form.html
+++ b/templates/comments/form.html
@@ -10,7 +10,7 @@
{% if field.is_hidden %}
{{ field }}
{% else %}
- <fieldset class="{% if field.errors %} error{% endif %} {% if field.name == "honeypot" %} honeypot"{% endif%}">
+ <fieldset class="{% if field.errors %}error {% endif %}{% if field.name == "honeypot" %}honeypot{% endif%}">
{{ field.label_tag }}
{%if field.name == "comment"%}<div class="textarea-rounded">{{ field }}</div>{%else%}{{field}}{%endif%}
</fieldset>