選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

11 行
552B

  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>