{% if CheckProducts|length > 0 %}
<h3>最近チェックした商品</h3>
<div class="ichiran_coinlist checkwrap">
<ul>
{% for Product in CheckProducts %}
<li><a href="{{ url('product_detail', {'id': Product.id}) }}">
<img src="{{ asset(Product.main_list_image|no_image_product, 'save_image') }}" alt="#">
{% if Product.Status.id == 8 %}
<b class="tab_yoyaku">ご予約可</b>
{% endif %}
<h2>{{ Product.name }}</h2>
<p>
{% if Product.Status.id == 6 %}
{# 取り置き(公開)は価格表示なし #}
{% elseif Product.getPrice02IncTaxMin == 0 and htMeyasu[Product.id] is defined %}
{# 価格0円の場合は目安価格を表示 #}
目安価格:{{ htMeyasu[Product.id]|number_format }}円(税込)
{% else %}
<s>一般価格:{{ Product.getPrice02IncTaxMin|number_format }}円(税込)</s>
{% if htPrice[Product.id] is defined %}
<br><strong>会員価格:{{ htPrice[Product.id]|number_format }}円(税込)</strong>
{% endif %}
{% endif %}
</p>
</a></li>
{% endfor %}
</ul>
</div>
{% endif %}