-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfirmOrder.html
49 lines (49 loc) · 2.01 KB
/
confirmOrder.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<template name="confirmOrder">
<div class="modal hide" id="confirmOrderModal">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Bekräfta beställning</h3>
</div>
<div class="modal-body">
<p>Härmed bekräftas att <strong>{{username}}</strong> beställer följande varor för totalt
{{totPrice}} kr: </p>
<table class="table table-striped table-bordered table-condensed purchaseordertable">
<thead>
<tr>
<th>Produktnamn</th>
<th>Antal</th>
<th>á Pris (kr)</th>
<th>Summa (kr)</th>
</tr>
</thead>
<tbody>
{{#each purchaseorder_rows}}
{{>confirmpurchaseorder_row}}
{{/each}}
<tr>
<th>Summa</th>
<th>{{totAmount}}</th>
<th></th>
<th>{{totPrice}}</th>
</tr>
</tbody>
</table>
<p>En bekräftelse kommer att skickas ut till <strong>{{useremail}}</strong>, samt varor med
tillhörande faktura kommer att skickas så snart som möjligt</p>
</div>
<div class="modal-footer">
<button class="btn btn-danger btn-large order pull-left error-button" href="#">
<i class="icon-remove icon-white"></i>
Nej Tack
</button>
<button class="btn btn-success btn-large order pull-right ok-button" href="#">
<i class="icon-ok icon-white"></i>
Beställ Varor
</button>
<button class="btn btn-success btn-large order pull-right tack-button hide" href="#">
<i class="icon-ok icon-white"></i>
Tack för besöket, välkommen åter
</button>
</div>
</div>
</template>