@model SportsStore.WebUI.Models.CartIndexViewModel @{ ViewBag.Title = "Sports Store: Your Cart"; }

Your cart

@foreach (var line in Model.Cart.Lines) { }
Quantity Item Price Subtotal
@line.Quantity @line.Product.Name @line.Product.Price.ToString("c") @((line.Quantity * line.Product.Price).ToString("c"))
Total: @Model.Cart.ComputeTotalValue().ToString("c")
Continue shopping