You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

toggle.html.twig 552B

3 years ago
3 years ago
1234567891011
  1. {% set item = entity.instance %}
  2. {% set property_name = field.getProperty() %}
  3. {% set id_toggle = 'toogle-'~item.id~'-'~property_name %}
  4. <div class="custom-control custom-switch custom-switch-on-success custom-switch-off-default"
  5. data-propertyname="{{ property_name }}" data-id={{ item.id }}>
  6. <input type="checkbox" class="custom-control-input" id="{{ id_toggle }}" {{ field.value ? 'checked' }}>
  7. <label class="custom-control-label" for="{{ id_toggle }}">
  8. {{ field.getCustomOption('toggle_label') ?? field.label }}</label>
  9. </div>