crowdstart-checkout
Version:
One Click Checkout for Crowdstart
41 lines (32 loc) • 1.24 kB
text/jade
div(if='{ !hide }')
.crowdstart-items.crowdstart-form-control
label
| Cart
.crowdstart-sep
lineitem(each='{ item, i in model.items }', currency='{ this.parent.model.currency }', model='{ item }', invoiceobs='{ this.parent.obs }')
promo(order='{ model }', client='{ client }', if='{ config.showPromoCode }')
.crowdstart-totals
.crowdstart-sep
.crowdstart-subotal
.column.crowdstart-receipt-label
| Subtotal
.column.crowdstart-money
| { renderCurrency(model.currency, subtotal()) }
.crowdstart-shipping-and-handling
.column.crowdstart-receipt-label
| Shipping & Handling
.column.crowdstart-money
| { renderCurrency(model.currency, shipping()) }
.crowdstart-tax
.column.crowdstart-receipt-label
| Taxes ({ taxRate() }%)
.column.crowdstart-money
| { renderCurrency(model.currency, tax()) }
.crowdstart-sep
.crowdstart-total
.column.crowdstart-receipt-label
| Total
.column.crowdstart-money
| { renderCurrency(model.currency, total()) } ({model.currency.toUpperCase()})
.crowdstart-shipping-details(if='{ !hide && config.shippingDetails != "" }')
| { config.shippingDetails }