tap/app/views/products_list/_product_row.html.haml
2015-09-17 14:05:33 +02:00

10 lines
386 B
Plaintext

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