31 lines
668 B
Text
31 lines
668 B
Text
<h1>Listing orders</h1>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Address</th>
|
|
<th>Email</th>
|
|
<th>Pay type</th>
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
|
|
<% @orders.each do |order| %>
|
|
<tr>
|
|
<td><%= order.name %></td>
|
|
<td><%= order.address %></td>
|
|
<td><%= order.email %></td>
|
|
<td><%= order.pay_type %></td>
|
|
<td><%= link_to 'Show', order %></td>
|
|
<td><%= link_to 'Edit', edit_order_path(order) %></td>
|
|
<td><%= link_to 'Destroy', order, method: :delete,
|
|
data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
|
|
<br />
|
|
|
|
<%= link_to 'New Order', new_order_path %>
|
|
<p><%= will_paginate @orders %></p>
|