ui2022/schoolnow/review__cell--checkmark.html.twig line 1

Open in your IDE?
  1. {% set form = _args.form %}
  2. {% set locked = _args.locked ?? false %}
  3. {% set show = _args.show ?? true %}
  4. {% form_theme form '@ui2022/schoolnow/forms/themes/default.html.twig' %}
  5. <div class="blocklist__cell blocklist_checkmark{% if not show %} invisible{% endif %}">
  6.     <div class="flex__wrap--center">
  7.         <span class="custom-control custom-checkbox">
  8.             {{ form_widget(form, {
  9.                 attr: {
  10.                     disabled: locked,
  11.                     class: 'custom-control-input',
  12.                     'data-channel': form.vars.name,
  13.                 },
  14.             }) }}
  15.             {{ form_label(form, ' ', {
  16.                 label_attr: {
  17.                     class: 'custom-control-label',
  18.                 },
  19.             }) }}
  20.         </span>
  21.     </div>
  22. </div>