{#
This file is part of EC-CUBE
Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
http://www.ec-cube.co.jp/
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
#}
{% block stylesheet %}
<style>
.list{
text-align:center;
}
</style>
{% endblock %}
{% set Carts = get_all_carts() %}
{% set totalPrice = get_carts_total_price() %}
{% set totalQuantity = get_carts_total_quantity() %}
<div class="ec-cartNaviWrap">
<div class="head"><h3 class="text1">現在の資料請求リスト</h3></div>
<div class="ec-cartNavi">
<div class="ec-cartNavi__label">
<div class="ec-cartNavi__price">資料請求リスト:{{ totalQuantity|number_format }}点</div>
</div>
</div>
<div class="ec-categoryRole__listItem">
<a href="{{ url('cart') }}?category_id=1">
<img class="list" src="{{ asset('assets/img/top/b_box_see_h.gif') }}">
</a>
</div>
</div>