app/Plugin/CustomerRank42/Resource/template/admin/Customer/customer_index.twig line 1

Open in your IDE?
  1. {#
  2. * Plugin Name : CustomerRank
  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. <div id="search_customer_rank" style="display:none;">
  11.     <div class="row mb-2">
  12.         <div class="col">
  13.             <div class="row">
  14.                 <div class="col-12">
  15.                 <p class="col-form-label">{{ 'customerrank.common.rank'|trans }}</p>
  16.                 {{ form_widget(searchForm.customer_rank, { 'label_attr': { 'class': 'checkbox-inline'}}) }}
  17.                 {{ form_errors(searchForm.customer_rank) }}
  18.                 </div>
  19.             </div>
  20.         </div>
  21.         <div class="col">
  22.         </div>
  23.     </div>
  24. </div>
  25. {% for Customer in pagination %}
  26.     <div id="c{{ loop.index }}" style="display:none;">
  27.         {{ Customer.CustomerRank }}
  28.     </div>
  29. {% endfor %}
  30. <div id="customer_rank_header" style="display:none;">
  31.     {{ 'customerrank.common.rank'|trans }}
  32. </div>