Files
mozo-backend/app/views/supplier/active_orders.html.slim
T

19 lines
470 B
Plaintext

.page-header= title 'Active orders'
.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);
});