package views import ( "fmt" "shop.tonybtw.com/internal/models" ) templ Cart(items []models.Cart_Item_Detail, total int, cart_count int) { @Layout("Cart") {
Your cart is empty.
} else {| Product | Size | Price | Qty | Subtotal | |
|---|---|---|---|---|---|
|
|
{ item.Size } | { Format_Price(item.Price) } | { Format_Price(item.Subtotal) } | ||
| Total | { Format_Price(models.Get_Cart_Total(items)) } | ||||