Files
mozo-backend/app/views/supplier/active_orders.html.slim
T
2012-09-06 14:49:22 +02:00

20 lines
528 B
Plaintext

.page-header
h3 = t('supplier.active_orders.title', orders: Order.model_name.human_plural)
.well
table#active-orders-table.table
thead
tr
th= Order.model_name.human
th.numeric= t('supplier.table_number')
th= Section.model_name.human
th.currency= t('supplier.active_orders.price')
th.actions
tbody
- content_for :footer do
javascript:
jQuery(function(){
Qsupplier.load_active_orders()
setInterval( 'Qsupplier.load_active_orders()', 7500);
});