mirror of
https://github.com/postgres/pgweb.git
synced 2025-07-25 16:02:27 +00:00
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:
@ -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}}
|
||||
|
Reference in New Issue
Block a user