aboutsummaryrefslogtreecommitdiff
path: root/app/templates/macros/forms.html
diff options
context:
space:
mode:
Diffstat (limited to 'app/templates/macros/forms.html')
-rw-r--r--app/templates/macros/forms.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/templates/macros/forms.html b/app/templates/macros/forms.html
index 255a4ca..858e0d4 100644
--- a/app/templates/macros/forms.html
+++ b/app/templates/macros/forms.html
@@ -115,7 +115,7 @@
{% macro render_checkbox_field(field, label=None) -%}
{% if not label %}{% set label=field.label.text %}{% endif %}
- <div class="checkbox">
+ <div class="checkbox {{ kwargs.pop('class_', '') }}">
<label>
{{ field(type='checkbox', **kwargs) }} {{ label }}
</label>