39e117ecda9b3a5ac7514eb0116bac0f57f0bf10
[depot.git] / app / views / orders / index.html.erb
1 <h1>Listing orders</h1>
2
3 <table>
4 <tr>
5 <th>Name</th>
6 <th>Address</th>
7 <th>Email</th>
8 <th>Pay type</th>
9 </tr>
10
11 <% for order in @orders %>
12 <tr>
13 <td><%=h order.name %></td>
14 <td><%=h order.address %></td>
15 <td><%=h order.email %></td>
16 <td><%=h order.pay_type %></td>
17 <td><%= link_to 'Show', order %></td>
18 <td><%= link_to 'Edit', edit_order_path(order) %></td>
19 <td><%= link_to 'Destroy', order, :confirm => 'Are you sure?', :method => :delete %></td>
20 </tr>
21 <% end %>
22 </table>
23
24 <br />
25
26 <%= link_to 'New order', new_order_path %>