Files
mozo-backend/app/views/user/history_list.html.slim
T
2012-11-27 14:19:37 +01:00

24 lines
726 B
Plaintext

.page-header= title t('user.history_list.title', list: List.model_name.human)
dl.dl-horizontal
dt= List.human_attribute_name(:created_at)
dd.list-created-at
dt= Supplier.model_name.human
dd.supplier-name
.well
table#history-list-table.table
thead
tr
th= Order.model_name.human
th.currency= Product.human_attribute_name(:price)
tbody
tr
td colspan=2 = slider_image
tfoot
script#active-list-orders-template[type="text/html"]= render 'active_list_orders.mustache'
script#active-list-orders-footer-template[type="text/html"]= render 'active_list_orders_footer.mustache'
- content_for :footer do
javascript:
jQuery(function(){
Quser.load_history_list();
})