2018-08-26 12:46:03 +02:00
|
|
|
<% require css("app/client/dist/css/order.css") %>
|
2018-08-13 14:13:55 +02:00
|
|
|
|
|
|
|
<%-- As Order.ss is also used in emails, avoid div, paragraph and heading elements --%>
|
|
|
|
<% include SilverShop\Model\Order_Address %>
|
|
|
|
<% include SilverShop\Model\Order_Content %>
|
2018-08-26 12:46:03 +02:00
|
|
|
|
2018-08-13 14:13:55 +02:00
|
|
|
<% if $Total %>
|
|
|
|
<% if $Payments %>
|
|
|
|
<% include SilverShop\Model\Order_Payments %>
|
|
|
|
<% end_if %>
|
|
|
|
<table id="OutstandingTable" class="infotable">
|
|
|
|
<tbody>
|
|
|
|
<tr class="gap summary" id="Outstanding">
|
|
|
|
<th colspan="4" scope="row" class="threeColHeader"><strong><%t SilverShop\Model\Order.TotalOutstanding "Total outstanding" %></strong></th>
|
|
|
|
<td class="right"><strong>$TotalOutstanding.Nice </strong></td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<% end_if %>
|
|
|
|
<% if $Notes %>
|
|
|
|
<table id="NotesTable" class="infotable">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th><%t SilverShop\Model\Order.db_Notes "Notes" %></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
</tbody>
|
|
|
|
<tr>
|
|
|
|
<td>$Notes</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<% end_if %>
|