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

Version Path
wordjelly-auth-1.6.0 app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb
wordjelly-auth-1.5.9 app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb
wordjelly-auth-1.5.8 app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb
wordjelly-auth-1.5.7 app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb
wordjelly-auth-1.5.6 app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb
wordjelly-auth-1.5.5 app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb
wordjelly-auth-1.5.4 app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb
wordjelly-auth-1.5.3 app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb
wordjelly-auth-1.5.2 app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb
wordjelly-auth-1.5.1 app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb
wordjelly-auth-1.5.0 app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb
wordjelly-auth-1.4.9 app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb
wordjelly-auth-1.4.8 app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb
wordjelly-auth-1.4.7 app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb
wordjelly-auth-1.4.6 app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb
wordjelly-auth-1.4.5 app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb
wordjelly-auth-1.4.4 app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb
wordjelly-auth-1.4.3 app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb
wordjelly-auth-1.4.2 app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb
wordjelly-auth-1.4.0 app/views/auth/shopping/cart_items/_show_cart_items_collection.html.erb