app/template/default/Block/pia_similar_product.twig line 1

Open in your IDE?
  1. {% if rows|length > 0 %}
  2.   <h3>PickUp商品</h3>
  3.   <div class="ichiran_coinlist checkwrap">
  4.     <ul>
  5.       {% for Product in rows %}
  6.           {% set id = Product.id %}
  7.         <li><a href="{{ url('product_detail', {'id': id}) }}">
  8.             <img src="{{ asset(Product.main_list_image|no_image_product, 'save_image') }}" alt="#">
  9.             {% if Product.Status.id == 8 %}
  10.               <b class="tab_yoyaku">ご予約可</b>
  11.             {% endif %}
  12.             <h2>{{ Product.name }}</h2>
  13.             <p>
  14.               <s>一般価格:{{ Product.getPrice02IncTaxMin|number_format }}円(税込)</s>
  15.               {% if htPrice[id] is defined %}
  16.                 <br><strong>会員価格:{{ htPrice[id]|number_format }}円(税込)</strong>
  17.               {% endif %}
  18.             </p>
  19.           </a></li>
  20.       {% endfor %}
  21.     </ul>
  22.   </div><!-- ichiran_coinlist -->
  23. {% endif %}