Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
-
- {% set item = entity.instance %}
- {% set property_name = field.getProperty() %}
- {% set id_toggle = 'toogle-'~item.id~'-'~property_name %}
-
- <div class="custom-control custom-switch custom-switch-on-primary custom-switch-off-default" data-propertyname="{{ property_name }}" data-id={{ item.id }}>
- <input type="checkbox" class="custom-control-input" id="{{ id_toggle }}" {{ field.value ? 'checked' }}>
- <label class="custom-control-label" for="{{ id_toggle }}">{{ field.label }}</label>
- </div>
|