refactoring

This commit is contained in:
Maxim Devaev
2023-10-26 08:41:27 +03:00
parent 7bb5531100
commit e2ac3412db
3 changed files with 30 additions and 35 deletions

View File

@@ -13,9 +13,19 @@ mixin menu_message(icon, short, classes="")
sup(style="line-height:1")
block
mixin menu_switch_notable(id, title, enabled, checked, classes="")
td(class=`${classes}`) #{title}:
td(class=`${classes}` align="right")
mixin menu_switch_notable_gpio(channel, title, confirm_off="")
td #{title}:
td(align="right")
div(class="switch-box")
input(disabled type="checkbox" id=`gpio-switch-${channel}` class="gpio-switch"
data-channel=channel data-confirm-off=confirm_off)
label(for=`gpio-switch-${channel}`)
span(class="switch-inner")
span(class="switch")
mixin menu_switch_notable(id, title, enabled, checked)
td #{title}:
td(align="right")
div(class="switch-box")
input(checked=checked disabled=!enabled type="checkbox" id=id)
label(for=id)