layout changes and section handling

This commit is contained in:
2012-09-02 14:23:17 +02:00
parent 50434c28cf
commit 0b56d07ed1
24 changed files with 390 additions and 283 deletions
+12 -10
View File
@@ -1,17 +1,19 @@
.page-header= title t('supplier.active_lists.title', lists: List.model_name.human_plural)
table#active-lists-table.table.table-striped
thead
tr
th.status-icons
th.number Table number
th.currency Price
th.actions
tbody
.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(){
Qrammer.load_active_lists()
active_lists_interval = setInterval('Qrammer.load_active_lists()', 7500);
Qsupplier.load_active_lists()
active_lists_interval = setInterval('Qsupplier.load_active_lists()', 7500);
});