{% if CheckProducts %}
<div id="btm_coinlist">
<div id="ichiran_wrap" class="btmcheckwrap"><dl><dd id="ichiran_right" class="plaza_back">
<p class="checktitle">最近チェックした商品</p>
<div id="ichiran_coinlist_plaza">
<ul id="btm_coinlist_wrap">
{% for Product in CheckProducts %}
{% set p_id = Product.id %}
<li>
<button type="button" id="btn_{{ p_id }}"
{% if customer_id == "" or htCFav[p_id] is defined %}disabled{% else %}onclick="addFavorite('{{ p_id }}');"{% endif %}>
{% if htFav[p_id] is defined and htFav[p_id] %}
<span class="cnt">{{ htFav[p_id] }}</span>
{% endif %}
<i class="far fa-heart"></i>
</button>
<a href="{{ url('plaza_product_detail', {'id': Product.id}) }}">
{% if Product.main_list_image %}
<img src="{{ asset(Product.main_list_image|no_image_product, 'save_image') }}" alt="{{ Product.name }}">
{% else %}
<img src="/html/upload/save_image/no_image_product.png" alt="{{ Product.name }}">
{% endif %}
{% if htBox[p_id] is defined and htBox[p_id] == "有り" %}
<p class="hako"><b>箱あり</b></p>
{% endif %}
<h2>{{ Product.name }}</h2>
<p>
{% if Product.Status.id == 6 %}
{# 取り置き(公開)は価格表示なし #}
{% elseif Product.getPrice02IncTaxMin == 0 and htMeyasu[p_id] is defined %}
{# 価格0円の場合は目安価格を表示 #}
<strong>目安価格:{{ htMeyasu[p_id]|number_format }}円(税込)</strong>
{% else %}
<strong>販売価格:{{ Product.getPrice02IncTaxMin|number_format }}円(税込)</strong>
{% endif %}
</p>
{% if Product.stock_find == "" %}
<div class="plate">
<b class="tab_urikire">売切れ</b>
</div>
{% elseif htNego[p_id] is defined and htNego[p_id] == "あり" %}
<div class="plate">
<b class="tab_kosho">価格交渉承り中</b>
</div>
{% endif %}
</a>
</li>
{% endfor %}
</ul>
</div>
</dd></dl></div>
</div><!--//btm_coinlist-->
{% endif %}