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

Open in your IDE?
  1. {% set favoriteProducts = favoriteProducts(20) %}
  2. {% if favoriteProducts %}
  3. <section class="item_other">
  4.       <div class="c_inner">
  5.         <h2 class="c_ttl ft_e">You Also Like</h2>
  6.       </div>
  7.     <div class="c_bg">
  8.         <ul class="item_list b">
  9.             {% for Product in favoriteProducts %}
  10.             <li>
  11.                 <a href="{{ url('product_detail', {'id': Product.id}) }}">
  12.                     <img src="{{ asset(Product.main_list_image|no_image_product, "save_image") }}" alt="{{ Product.name }}">
  13.                     <dl>
  14.                         <dt>{{ Product.name }}</dt>
  15.                         <dd class="price">
  16.                         {% for prdClass in Product.ProductClasses %}
  17.                         {% if prdClass.ClassCategory1 is not empty %}
  18.                         {% if not ("併設スタジオ利用時のみ" in prdClass.ClassCategory1.name) %}
  19.                         <p>{{ prdClass.ClassCategory1.name }}<i>{{ prdClass.price01|price }}</i></p>
  20.                         {% endif %}
  21.                         {% endif %}
  22.                         {% endfor %}
  23.                         </dd>
  24.                         <dd>{{ Product.number }}</dd>
  25.                     </dl>
  26.                 </a>
  27.                 <div class="favo">
  28.                   <form action="{{ url('product_add_favorite', {id:Product.id}) }}" method="post">
  29.                     <button type="submit" class="favorite done" disabled="disabled" title="{{ 'お気に入りに追加済です。'|trans }}"></button>
  30.                   </form>
  31.                 </div>
  32.             </li>
  33.             {% endfor %}
  34.         </ul>
  35.     </div>
  36. </section>
  37. {% endif %}