fff01dffcb953c92a0c8ebd97a8042ef28c58ebb
[depot.git] / app / views / store / index.html.erb
1 <h1>Neil's Whimsical Store Catalogue</h1>
2
3 <% for product in @products -%>
4 <div class="entry">
5 <%= link_to image_tag(product.image_url), {:action => "add_to_cart", :id => product}, :method => "post" %>
6 <h3><%= link_to h(product.title), {:action => "add_to_cart", :id => product}, :method => "post" %></h3>
7 <%= product.description %>
8 <div class="price-line">
9 <span class="price"><%= number_to_currency product.price, :unit => "£" %></span>
10 <% form_remote_tag :url => {:action => 'add_to_cart', :id => product} do %>
11 <%= submit_tag "Add to cart" %>
12 <% end %>
13 </div>
14 </div>
15 <% end %>