Allow checkboxes that have help text associated with be visible to user.

For instances, the "Community Event" check box has instructions for how a
user can verify whether or not they are submitting a community event.
This commit is contained in:
Jonathan S. Katz
2018-11-04 11:43:04 -05:00
parent 456c833ac9
commit 27d1dd827d

View File

@ -44,6 +44,9 @@
<label for="{{ field.id_for_label }}" class="form-check-label">
{{ field.label }}
</label>
{%if field.help_text%}
<small class="form-text text-muted">{{field.help_text|safe}}</small>
{%endif%}
</div>
{% else %}
{{ field.label_tag }} {{field.help_text|safe}}