43 lines
1.0 KiB
Plaintext
43 lines
1.0 KiB
Plaintext
@model SportsStore.WebUI.Models.CartIndexViewModel
|
|
|
|
@{
|
|
ViewBag.Title = "Sports Store: Your Cart";
|
|
}
|
|
|
|
<h2>Your cart</h2>
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Quantity</th>
|
|
<th>Item</th>
|
|
<th class="text-right">Price</th>
|
|
<th class="text-right">Subtotal</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var line in Model.Cart.Lines) {
|
|
<tr>
|
|
<td class="text-center">@line.Quantity</td>
|
|
<td class="text-left">@line.Product.Name</td>
|
|
<td class="text-right">@line.Product.Price.ToString("c")</td>
|
|
<td class="text-right">
|
|
@((line.Quantity * line.Product.Price).ToString("c"))
|
|
</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="3" class="text-right">Total:</td>
|
|
<td class="text-right">
|
|
@Model.Cart.ComputeTotalValue().ToString("c")
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
|
|
<div class="text-center">
|
|
<a class="btn btn-primary" href="@Model.ReturnUrl">Continue shopping</a>
|
|
</div>
|
|
|