end of day commit

This commit is contained in:
2012-08-23 18:50:06 +02:00
parent 13dd2bf335
commit 0bae1bcbed
37 changed files with 1157 additions and 83 deletions
@@ -0,0 +1,15 @@
.page-header= title 'Active lists'
table#active-lists-table.table
thead
tr
th.number Table number
th.currency Price
th.actions
tbody
- content_for :footer do
javascript:
jQuery(function(){
Qrammer.load_active_lists('#{@supplier.id}')
setInterval( "Qrammer.load_active_lists('#{@supplier.id}')", 7500);
});
@@ -0,0 +1,16 @@
.page-header= title 'Active orders'
table#active-orders-table.table
thead
tr
th Order
th.number Table number
th.currency Price
th.actions
tbody
- content_for :footer do
javascript:
jQuery(function(){
Qrammer.load_active_order_list('#{@supplier.id}')
setInterval( "Qrammer.load_active_order_list('#{@supplier.id}')", 7500);
});