Guest User

Untitled

a guest
Dec 17th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <h1>Products</h1>
  2.  
  3. <table>
  4. <% @products.each do |product| %>
  5.  
  6. <tr class="<%= cycle('list_line_odd', 'list_line_even')%>">
  7.  
  8. <td><%= image_tag(product.image_url,class:'list_image')%></td>
  9. <td class="list_description">
  10. <dl>
  11. <dt><%= product.title%></dt>
  12. <dd><%= truncate(strip_tags(product.description),length: 80)%></dd>
  13. </dl>
  14.  
  15. </td>
  16. <td><%= link_to 'Show', product %></td>
  17. <td><%= link_to 'Edit', edit_product_path(product) %></td>
  18. <td><%= link_to 'Destroy', product, method: :delete, data: { confirm: 'Are you sure?' } %></td>
  19. </tr>
  20. <% end %>
Add Comment
Please, Sign In to add comment