Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 

34 linhas
778 B

  1. <p id="notice"><%= notice %></p>
  2. <h1>Products</h1>
  3. <table>
  4. <% @products.each do |product| %>
  5. <tr class="<%= cycle('list_line_odd', 'list_line_even') %>">
  6. <td>
  7. <%= image_tag(product.image_url, class: 'list_image') %>
  8. </td>
  9. <td class="list_description">
  10. <dl>
  11. <dt><%= product.title %></dt>
  12. <dd><%= truncate(strip_tags(product.description),
  13. length: 80) %></dd>
  14. </dl>
  15. </td>
  16. <td class="list_actions">
  17. <%= link_to 'Show', product %><br/>
  18. <%= link_to 'Edit', edit_product_path(product) %><br/>
  19. <%= link_to 'Destroy', product, method: :delete,
  20. data: { confirm: 'Are you sure?' } %>
  21. </td>
  22. </tr>
  23. <% end %>
  24. </table>
  25. <br />
  26. <%= link_to 'New Product', new_product_path %>