カート内容表示 (ウィジェットテンプレート) (テンプレートリファレンス)/ref_temp/record/widget_ecs_display_cart
定数
プロトタイプ
<section>
<table class="width-100 striped">
<thead>
<tr>
<th>商品名</th>
<th>単価</th>
<th>数量</th>
<th>小計</th>
</tr>
</thead>
<tbody>
{?foreach from=$this_widget.cart item=value?}
<tr>
<td>{?$value.record.title?} {?$value.variation_name?}</td>
<td>¥{?$value.price|number_format?}</td>
<td>{?$value.cnt?}個</td>
<td>¥{?$value.subtotal_price|number_format?}</td>
</tr>
{?/foreach?}
<tr>
<td colspan="4" class="subtotal_price"><label class="label">小計</label>¥{?$page.subtotal_price|number_format?}</td>
</tr>
</tbody>
</table>
<div><a href="{?$this_widget.cart_url?}" class="btn">カートへ移動</a><a href="{?$this_widget.order_url?}" class="btn">注文確定</a></div>
</section>