ntopng/httpdocs/templates/on_off_switch.html
2020-09-16 16:13:04 +02:00

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>