tap/app/views/products_list/_product_row.html.haml
2015-09-19 11:05:43 +02:00

10 lines
401 B
Plaintext

%tr{id: "products_row_#{dom_id(product)}"}
%td= link_to image_tag(product.avatar(:small)), edit_product_path(product)
%td= product.name
%td= euro(product.price)
%td= product.stock
%td
%span{class: "glyphicon #{product.deleted ? "glyphicon-check" : "glyphicon-unchecked"}"}
%td= product.calories
%td= link_to "Edit", edit_product_path(product), class: "btn btn-default", remote: true