index.html.erb 668 B

12345678910111213141516171819202122232425262728293031
  1. <h1>Listing orders</h1>
  2. <table>
  3. <tr>
  4. <th>Name</th>
  5. <th>Address</th>
  6. <th>Email</th>
  7. <th>Pay type</th>
  8. <th></th>
  9. <th></th>
  10. <th></th>
  11. </tr>
  12. <% @orders.each do |order| %>
  13. <tr>
  14. <td><%= order.name %></td>
  15. <td><%= order.address %></td>
  16. <td><%= order.email %></td>
  17. <td><%= order.pay_type %></td>
  18. <td><%= link_to 'Show', order %></td>
  19. <td><%= link_to 'Edit', edit_order_path(order) %></td>
  20. <td><%= link_to 'Destroy', order, method: :delete,
  21. data: { confirm: 'Are you sure?' } %></td>
  22. </tr>
  23. <% end %>
  24. </table>
  25. <br />
  26. <%= link_to 'New Order', new_order_path %>
  27. <p><%= will_paginate @orders %></p>