Readd mustache templates

This commit is contained in:
2014-08-15 14:55:19 +02:00
parent 95e42bb917
commit 957ea02b5d
11 changed files with 132 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
<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>
</tr>
</thead>
<tbody>
{{#products}}
<tr>
<td>{{name}}</td>
<td>{{number}}</td>
<td class="currency">
{{#currency}}{{product_total}}{{/currency}}
<a class="product-order-remove-button" href=""><span class="fa fa-times fa-large"></span></a>
</td>
</tr>
{{/products}}
</tbody>
<tfoot>
<tr>
<td colspan="2">
Totaal
</td>
<td class="currency"><strong id="active-order-total">{{#currency}}{{total}}{{/currency}}</strong></td>
<tr>
<tr>
<td>
<button class="btn btn btn-warning hide" onClick="Quser.clear_selected_products()" data-t="selected_products.clear"></button>
</td>
<td></td>
<td style="text-align: right">
<button class="order-selected-products" onClick="Quser.order_selected_products()" data-t="selected_products.order"></button>
</td>
<tr>
</tfoot>
</table>