aboutsummaryrefslogtreecommitdiffstats
path: root/servo/templates/products/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'servo/templates/products/list.html')
-rwxr-xr-xservo/templates/products/list.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/servo/templates/products/list.html b/servo/templates/products/list.html
new file mode 100755
index 0000000..bac34ec
--- /dev/null
+++ b/servo/templates/products/list.html
@@ -0,0 +1,27 @@
+{% load i18n %}
+{% load servo_tags %}
+<table class="table table-hover sortable">
+ <thead>
+ <tr>
+ <th style="width:80px" data-defaultsort="disabled"></th>
+ <th>{% trans "Product" %}</th>
+ <th>{% trans "Stock Price" %}</th>
+ <th>{% trans "Exchange Price" %}</th>
+ <th style="width:80px">{% trans "In Stock" %}</th>
+ <th data-defaultsort="disabled"></th>
+ </tr>
+ </thead>
+ <tbody class="searchable">
+ {% include "products/list_rows.html" %}
+ </tbody>
+ <tfoot>
+ <tr>
+ <td></td>
+ <td></td>
+ <td></td>
+ <td><strong>{{ total_sales_value|currency }}</strong><br/><strong>{{ total_purchase_value|currency }}</strong></td>
+ <td></td>
+ <td></td>
+ </tr>
+ </tfoot>
+</table>