Sha256: 0137494cd378952c2745b4022f2bb6bf208f603c23a851d43ba59c666b6268e2

Contents?: true

Size: 503 Bytes

Versions: 4

Compression:

Stored size: 503 Bytes

Contents

<%= stylesheets %>
<div id="product-listing">
	<h3>Products</h3><br/>	
	<% for product in @products %>  
	<li class="product preview" id="product_<%= product.id %>">
	        <a href="/store/show/<%=product.id%>">
	          <%= small_image(product) %>
	        </a>
		 	<%= link_to product.name, :controller => :store, :action => 'show', :id => product %>
	        <b>$<%=product.price%></b>
	</li>
	<%= draggable_element("product_#{product.id}", :revert => true) %>
	
	<% end %>
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
spree-0.0.6 starter-app/vendor/plugins/spree/app/views/store/list.rhtml
spree-0.0.5 starter-app/vendor/plugins/spree/app/views/store/list.rhtml
spree-0.0.7 starter-app/vendor/plugins/spree/app/views/store/list.rhtml
spree-0.0.8 starter-app/vendor/plugins/spree/app/views/store/list.rhtml