about summary refs log tree commit diff
path: root/app/views/machines/index.html.erb
blob: f099ea6dd7d53ce85f4fe83cfc7b37034562c78a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<h1>Pinball Machines</h1>

<table>
  <thead>
    <th>Name</th>
    <th>Edition</th>
    <th>Delete</th>
  </thead>
  <tbody>
    <% @machines.each do |machine| %>
      <tr>
        <td><%= link_to machine.name, edit_machine_path(machine) %></td>
        <td><%= machine.edition %></td>
        <td><%= link_to "X", machine_path(machine),
          method: :delete,
          data: { confirm: "Are you sure?" } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<hr>
<p><%= @machines.size %> available machines</p>
<%= link_to "+ Add Machine", new_machine_path %>