Sha256: 16a8612b3fbb2043b9a19aa80b123fd069e66bccd8fd21594bc625868f245b2e
Contents?: true
Size: 545 Bytes
Versions: 59
Compression:
Stored size: 545 Bytes
Contents
<table> <thead> <th>Cart Item</th> <th>Status</th> <th>Price</th> </thead> <tbody> <% cart_items.each_with_index {|citem,key| %> <tr> <td><%= citem.id.to_s %> <%= render :partial => "auth/shopping/carts/remove_cart_item.html.erb", locals: {cart_item: citem, cart: cart} %> </td> <td><%= citem.accepted.to_s %></td> <td><%= citem.price.to_s %></td> </tr> <% } %> <% 1.times do |n| %> <tr> <!-- leave one blank row --> <td> </td> <td> </td> <td> </td> </tr> <% end %> </tbody> </table>
Version data entries
59 entries across 59 versions & 1 rubygems