40 lines
1.2 KiB
HTML
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">€{{ item.subtotal.toFixed(2) }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3"> </td>
|
|
</tr>
|
|
<tr>
|
|
<td> </td>
|
|
<td>Inc Tax</td>
|
|
<td class="currency">€{{ data.cart.tax.toFixed(2) }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td> </td>
|
|
<td>Total</td>
|
|
<td class="currency">€{{ data.cart.total.toFixed(2) }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3">
|
|
<button ng-click="pay();">Pay with Paypal</button>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|