app/Plugin/DeliveryDate42/Resource/template/admin/Product/product_days.twig line 1

Open in your IDE?
  1. {#
  2. * Plugin Name : DeliveryDate4
  3. *
  4. * Copyright (C) BraTech Co., Ltd. All Rights Reserved.
  5. * http://www.bratech.co.jp/
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. #}
  10. {% if has_class == false %}
  11.     <div id="deliverydate_days" style="display:none;">
  12.         <div class="row">
  13.             <div class="col-3">
  14.                 <div class="d-inline-block" data-toggle="tooltip" data-placement="top"
  15.                      title="Tooltip">
  16.                     <span>{{ form.class.children.delivery_date_days.vars.label }}</span>
  17.                 </div>
  18.             </div>
  19.             <div class="col mb-2">
  20.                 <div>
  21.                     {{ form_widget(form.class.delivery_date_days) }}
  22.                     {{ form_errors(form.class.delivery_date_days) }}
  23.                 </div>
  24.             </div>
  25.         </div>
  26.     </div>
  27. {% endif %}