Files
mozo-backend/app/templates/user/_active_order.mustache
T

30 lines
916 B
Plaintext

<table id="active-order-table" class="table">
<thead>
<tr>
<th data-t="models.product"></th>
<th>#</th>
<th class="currency" data-t="basket.total"></th>
<th></th>
</tr>
</thead>
<tbody>
{{#products}}
<tr>
<td>{{name}}</td>
<td>{{number}}</td>
<td class="currency">{{#currency}}{{product_total}}{{/currency}}</td>
</tr>
{{/products}}
</tbody>
<tfoot>
<tr>
<td colspan="2">
<button class="btn btn-primary" onClick="Quser.handle_active_list(function(){Quser.order_selected_products()})" data-t="selected_products.order"></button>
<button class="btn btn btn-warning" onClick="Quser.clear_selected_products()" data-t="selected_products.clear"></button>
</td>
<td class="currency"><strong id="active-order-total">{{#currency}}{{total}}{{/currency}}</strong></td>
<td></td>
<tr>
</tfoot>
</table>