mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-01 16:30:10 +00:00
9 lines
346 B
HTML
9 lines
346 B
HTML
<div class="custom-control custom-switch">
|
|
<input id="{{ id }}" class="custom-control-input" type="checkbox" name="{{ id }}" value="{{ value or 1 }}"
|
|
{% if checked then %}
|
|
checked
|
|
{% end %}
|
|
>
|
|
<label class="d-inline-block custom-control-label {{ label_class or "" }}" for="{{ id }}">{* label or "" *}</label>
|
|
{* icon or "" *}
|
|
</div>
|