Guest User

Untitled

a guest
May 25th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <h1>Your Pragmatic Catalog </h1>
  2.  
  3. <% @products.each do |product| %>
  4. <div class="entry">
  5.  
  6. <%= link_to image_tag(product.image_url) , line_items_path(:product_id => product.id) ,
  7. :method => :post %>
  8.  
  9. <h3><%= product.title %></h3>
  10. <%=raw product.description %>
  11. <div class="price_line">
  12. <span class="price"><%= number_to_currency(product.price, :unit => "&euro;",
  13. :separator => "," ) %></span>
  14. <%= button_to 'Add to Cart', line_items_path(:product_id => product.id) %>
  15. </div>
  16. </div>
  17. <% end %>
Add Comment
Please, Sign In to add comment