mirror of
https://github.com/fastapi-admin/fastapi-admin.git
synced 2026-03-13 10:32:25 +08:00
11 lines
335 B
HTML
11 lines
335 B
HTML
<div class="form-group mb-3">
|
|
<div class="form-label">{{ label }}</div>
|
|
<label class="form-check form-switch">
|
|
<input name="{{ name }}" class="form-check-input" type="checkbox" {% if value %}
|
|
checked
|
|
{% endif %} {% if disabled %}
|
|
disabled
|
|
{% endif %} >
|
|
</label>
|
|
</div>
|