You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

34 line
726 B

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