src/Eccube/Resource/template/admin/search_items.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. <ul class="list-inline">
  9.     {% for child in form.children|filter(child => (child.vars.name != '_token' and child.vars.data is not empty)) %}
  10.         {% if false == (child.vars.label == 'admin.list.sort.key' or child.vars.label == 'admin.list.sort.type') %}{# ソートの選択結果は表示しない #}
  11.         <li class="list-inline-item"><span class="fw-bold">{{ child.vars.label|trans }}:&nbsp;</span>
  12.             {%- if child.vars.data is iterable -%}
  13.                 {%- for value in child.vars.value -%}
  14.                     {# ChoiceType -> multiple:true #}
  15.                     {%- for choice in child.vars.choices -%}
  16.                         {%- if choice is selectedchoice(value) -%}
  17.                             {{ choice.label|trans }}
  18.                         {%- endif %}
  19.                     {%- endfor -%}
  20.                     {{ not loop.last ? ',&nbsp;' }}
  21.                 {%- endfor -%}
  22.             {%- elseif child.vars.data.timestamp is defined -%}
  23.                 {# DateTimeType の時は分まで表示 #}
  24.                 {% if 'datetime' in child.vars.id %}
  25.                     {{ child.vars.data|date_sec }}
  26.                 {% else %}
  27.                     {{ child.vars.data|date_day }}
  28.                 {% endif %}
  29.             {%- else -%}
  30.                 {# ChoiceType -> multiple:false #}
  31.                 {%- if child.vars.choices is defined and child.vars.choices is not empty -%}
  32.                     {%- for choice in child.vars.choices -%}
  33.                         {%- if choice is selectedchoice(child.vars.value) -%}
  34.                             {{ choice.label|trans }}
  35.                         {%- endif %}
  36.                     {%- endfor -%}
  37.                 {%- else -%}
  38.                     {{ child.vars.data }}
  39.                 {%- endif-%}
  40.             {%- endif -%}
  41.         </li>
  42.         {% endif %}
  43.     {% endfor %}
  44. </ul>