oca-ocb-web/odoo-bringout-oca-ocb-web_tour/web_tour/static/src/js/onboarding_item.xml
Ernad Husremovic 4b94f0abc5 19.0 vanilla
2026-03-09 09:32:58 +01:00

15 lines
595 B
XML

<?xml version="1.0"?>
<templates>
<t t-name="web_tour.OnboardingItem">
<DropdownItem>
<div class="d-flex justify-content-between ps-3">
<div class="align-self-center">
<span class="form-check form-switch" t-on-click.stop.prevent="() => this.props.toggleItem()">
<input type="checkbox" class="form-check-input" id="onboarding" t-att-checked="this.props.toursEnabled"/>
<label class="form-check-label">Onboarding</label>
</span>
</div>
</div>
</DropdownItem>
</t>
</templates>