index.html.erb 700 B

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