app/template/default/Product/option_detailclass0.twig line 1

Open in your IDE?
  1. {% if BaseInfo.show_stock == 0 and BaseInfo.show_limit == 0 and BaseInfo.show_deliv == 0 %}
  2. {% else %}
  3. <div id="option_detailclass0_area">
  4.     {% for ProductClass in Product.product_classes %}
  5.         <div id="option_detailclass0_item">
  6.             <div class="item_area">
  7.                 
  8.                     <div class="class_category_name">
  9.                         {% if form.classcategory_id1 is defined %}<i class="fas fa-arrow-alt-circle-down"></i> {{ ProductClass.class_category1.name }}{% endif %}{% if form.classcategory_id2 is defined %} / {{ ProductClass.class_category2.name }}{% endif %}
  10.                     </div>
  11.                     {% if BaseInfo.show_stock == 1 %}
  12.                         {% if ProductClass.stock_find is empty %}
  13.                             <div class="item"><small class="text-danger">品切れ中</small></div>
  14.                         {% elseif ProductClass.stock != null %}
  15.                             <div class="item"><small>在庫数:{{ ProductClass.stock }}</small></div>
  16.                         {% else %}
  17.                             <div class="item"><small>在庫多数</small></div>
  18.                         {% endif %}
  19.                     {% endif %}
  20.                     
  21.                     {% if BaseInfo.show_limit == 1 %}
  22.                         {% if ProductClass.sale_limit != null %}
  23.                             <div class="item"><small>販売制限数:{{ ProductClass.sale_limit }}</small></div>
  24.                         {% endif %}
  25.                     {% endif %}
  26.                     
  27.                     {% if BaseInfo.show_deliv == 1 %}
  28.                         {% if ProductClass.DeliveryDuration %}
  29.                             <div class="item"><small>発送日目安:{{ ProductClass.DeliveryDuration }}</small></div>
  30.                         {% else %}
  31.                             <div class="item"><small>お届け日指定不可</small></div>
  32.                         {% endif %}
  33.                     {% endif %}
  34.                 
  35.             </div>
  36.             <div style="clear:both;"></div>
  37.         </div>
  38.     {% endfor %}
  39. </div>
  40. {% endif %}