mourningdove/views/shop/history.tt

21 lines
999 B
Text
Raw Permalink Normal View History

2026-05-24 01:03:05 +00:00
[% sections.title = dw.ml( '.title' ) %]
[% IF carts.size > 0 %]
<table class='shop-cart table'>
<thead><tr><th>[% dw.ml('.cart.header.ordernumber') %]</th><th>[% dw.ml('.cart.header.date') %]</th><th>[% dw.ml('.cart.header.total') %]</th>
<th>[% dw.ml('.cart.header.paymentmethod') %]</th><th>[% dw.ml('.cart.header.status') %]</th><th>[% dw.ml('.cart.header.details') %]</th></tr></thead>
[% FOREACH cart IN carts %]
<tr>
<td>[% cart.id %]</td>
<td>[% cart.date.strftime( "%F %r %Z" ) %]</td>
<td>[% cart.display_total %]</td>
<td>[% dw.ml("/shop/receipt.tt.cart.paymentmethod.${cart.paymentmethod_visible}") %]</td>
<td>[% dw.ml("/shop/receipt.tt.cart.status.${cart.state}") %]</td>
<td><a href='[% site.shoproot %]/receipt?ordernum=[% cart.ordernum %]'>[% dw.ml('.cart.details') %]</a></td>
</tr>
[% END %]
</table>
[% ELSE %]
[% dw.ml( '.nocarts.extra', { aopts => "href='${site.shoproot}'" } ) %]
[% END %]