Files
mozo-backend/app/views/dashboard/show_products.html.slim
T
2012-08-22 18:15:37 +02:00

18 lines
582 B
Plaintext

table#products-table.table.table-striped.table-hover
tbody
- content_for :footer do
javascript:
jQuery(function(){
$.get('#{product_list_supplier_path(@supplier, format: :json).html_safe}', function(res){
window.products = res
body = $('#products-table tbody')
for(category in window.products){
body.append('<tr><td><h3>'+category+'<h3></td></tr>')
for(iproduct in window.products[category]){
body.append('<tr><td>'+window.products[category][iproduct].name+'</td></tr>')
}
}
})
})