{#
Copyright(c) 2019 SYSTEM FRIEND INC.
#}
{% if CheckProducts|length > 0 %}
<div class="top_inner">
<div class="latest_block">
<div class="same_category_product_area">
<div class="same_category_product_block">
<p class="same_category_name">{{'check_product42.front.block.check_products.title.ja'|trans}}</p>
<div class="product_grid">
{% for Product in CheckProducts %}
<div class="product_item">
<a href="{{ url('product_detail', {'id': Product.id}) }}">
<div class="product_image">
<img src="{{ asset(Product.main_list_image|no_image_product, 'save_image') }}">
</div>
<p class="product_name">{{ Product.name }}</p>
<p class="product_price">{% if Product.hasProductClass %}
{% if Product.getPrice02Min == Product.getPrice02Max %}
{{ Product.getPrice02IncTaxMin|price }}
{% else %}
{{ Product.getPrice02IncTaxMin|price }} ~ {{ Product.getPrice02IncTaxMax|price }}
{% endif %}
{% else %}
{{ Product.getPrice02IncTaxMin|price }}
{% endif %}</p>
</a>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</div>
{% endif %}