X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;f=app%2Fviews%2Fstore%2Findex.html.erb;h=7bbc2abaad5eab95d8f72a1d949edc92443cb10e;hb=2e4e591080e228dec676acf40b9e7bc4b044b8bc;hp=c9f41e402827a1e0d2231017607b9aaad7526fca;hpb=f64339ce335029afcf8ba9cbe7fc38da42443684;p=depot.git diff --git a/app/views/store/index.html.erb b/app/views/store/index.html.erb index c9f41e4..7bbc2ab 100644 --- a/app/views/store/index.html.erb +++ b/app/views/store/index.html.erb @@ -2,12 +2,17 @@ <% for product in @products -%>
- <%= link_to image_tag(product.image_url), {:action => "add_to_cart", :id => product}, :method => "post" %> -

<%= link_to h(product.title), {:action => "add_to_cart", :id => product}, :method => "post" %>

+ <% form_remote_tag :url => {:action => 'add_to_cart', :id => product} do %> + <%= image_submit_tag(product.image_url) %> + <% end %> +

<%= h(product.title) %>

<%= product.description %>
- <%= number_to_currency product.price, :unit => "£" %> - <%= button_to "Add to cart", :action => "add_to_cart", :id => product %> + <%= number_to_currency product.price, :unit => "£" %> + <% form_remote_tag :url => {:action => 'add_to_cart', :id => product} do %> + <%= submit_tag "Add to cart" %> + <% end %>
<% end %> +