Files
robot-shop/web/static/payment.html
Steve Waterworth 0dc55b878d payment started
2018-01-25 17:42:38 +00:00

40 lines
1.2 KiB
HTML

<!-- payment template -->
<div>
<h3>Review your order</h3>
<div ng-if="data.cart.total == 0">
Your cart is empty, get shopping
</div>
<div ng-if="data.cart.total != 0">
<table>
<tr>
<th>QTY</th>
<th>Name</th>
<th>Sub Total</th>
</tr>
<tr ng-repeat="item in data.cart.items">
<td>{{ item.qty }}</td>
<td>{{ item.name }}</td>
<td class="currency">&euro;{{ item.subtotal.toFixed(2) }}</td>
</tr>
<tr>
<td colspan="3">&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>Inc Tax</td>
<td class="currency">&euro;{{ data.cart.tax.toFixed(2) }}</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>Total</td>
<td class="currency">&euro;{{ data.cart.total.toFixed(2) }}</td>
</tr>
<tr>
<td colspan="3">
<button ng-click="pay();">Pay with Paypal</button>
</td>
</tr>
</table>
</div>
</div>