20 lines
563 B
Plaintext
20 lines
563 B
Plaintext
.page-header= title t('supplier.active_lists.title', lists: List.model_name.human_plural)
|
|
.well
|
|
table#active-lists-table.table
|
|
thead
|
|
tr
|
|
th.status-icons
|
|
th.numeric= t('supplier.table_number')
|
|
th= Section.model_name.human
|
|
th.currency= t('supplier.active_lists.price')
|
|
th.actions
|
|
tbody
|
|
- content_for :footer do
|
|
javascript:
|
|
var active_lists_interval;
|
|
jQuery(function(){
|
|
Qsupplier.load_active_lists()
|
|
active_lists_interval = setInterval('Qsupplier.load_active_lists()', 7500);
|
|
});
|
|
|