9 lines
294 B
Python
9 lines
294 B
Python
<div class="form-group {% if field.errors %}has-error{% endif %}">
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="{{ field.name }}" value="true" {% if field.value %}checked{% endif %}>
|
|
{% if field.label %}{{ field.label }}{% endif %}
|
|
</label>
|
|
</div>
|
|
</div>
|