Files
robot-shop/web/static/payment.html

44 lines
1.3 KiB
HTML
Raw Permalink Normal View History

2018-01-25 17:05:28 +00:00
<!-- payment template -->
2018-02-02 09:50:17 +00:00
<div>
2018-01-25 17:05:28 +00:00
<h3>Review your order</h3>
<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>
2018-01-25 17:42:38 +00:00
<td>Inc Tax</td>
2018-01-25 17:05:28 +00:00
<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">
2018-12-18 12:51:11 +00:00
<button ng-disabled="data.buttonDisabled" ng-click="pay();">Pay Now</button>
2018-01-25 17:05:28 +00:00
</td>
</tr>
</table>
</div>
2018-01-26 16:01:39 +00:00
<div class="message">
{{ data.message }}
</div>
<div ng-if="data.cont">
2020-06-08 13:40:43 +02:00
Thank you for your order
2018-01-26 16:01:39 +00:00
<a class="cont" href="/">Continue shopping</a>
</div>
2018-01-25 17:05:28 +00:00
</div>