Sha256: 1ad6c195abc6df1b412a9fb306bcdc31d4ffe91b2212aad9fcb926e231315046
Contents?: true
Size: 525 Bytes
Versions: 1
Compression:
Stored size: 525 Bytes
Contents
<%= stylesheets %> <%= render :partial => 'menu' -%> <h1>Products</h1><br/> <div id="product-listing"> <% 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
railscart-0.0.4 | starter_app/vendor/plugins/railscart/app/views/store/list.rhtml |