app/template/default/Common/SizeTable.twig line 1

Open in your IDE?
  1. <div class="mt10px">
  2.     <p class="size_table_caption">{{ goods.goodsNewName }}のサイズ表</p>
  3.     <div class="ltxt">
  4.     <table cellspacing="0" border="0" class="size_table">
  5.         {% for sizeName in SizeList.size %}
  6.             {% if loop.first %}<tr><th>サイズ</th>{% endif %}
  7.             <th>{{sizeName}}</th>
  8.             {% if loop.last %}</tr>{% endif %}
  9.         {% endfor %}
  10.         {% for key, data in SizePosition %}
  11.             <tr>
  12.                 <th>
  13.                 {#<a href="Javascript:void(0);" onClick="JavaScript:window.open(base.href+'item/sizehelp?id={{data.link}}','_blank','width=500,height=400,scrollbars=yes,resizable=yes');" rel="nofollow">#}
  14.                 {{data.position}}
  15.                 {#</a>#}
  16.                 </th>
  17.             {% for sizeVal in data.val %}
  18.                 <td{% if data.count[loop.index0] != "" %} colspan='{{data.count[loop.index0]}}'{% endif %}>
  19.                 {{sizeVal}}
  20.                 </td>
  21.             {% endfor %}
  22.             </tr>
  23.         {% endfor %}
  24.         {% if SizeList.comment is defined %}
  25.             <tr>
  26.             <th>備考</th>
  27.             {% for sizeVal in SizeList.comment %}
  28.                     <td>{{sizeVal}}<br /></td>
  29.             {% endfor %}
  30.             </tr>
  31.        {% endif %}
  32.     </table>
  33.         {% if SizeList is defined and SizeList.size and data.goods_size_guide_comment is defined %}
  34.             <p class="size_table_comment">{{ data.goods_size_guide_comment | raw}} </p>
  35.         {% endif %}
  36.     </div>
  37. </div>