about summary refs log blame commit diff
path: root/app/views/machines/index.html.erb
blob: 5abd2c22d604a645dc91cc3d950398b92f1f4bed (plain) (tree)
1
2

                         
















                                                                        
                                               
                                                
 
<h1>Pinball Machines</h1>


<table>
  <thead>
    <th>Name</th>
    <th>Edition</th>
  </thead>
  <tbody>
    <% @machines.each do |machine| %>
      <tr>
        <td><%= link_to machine.name, edit_machine_path(machine) %></td>
        <td><%= machine.edition %></td>
      </tr>
    <% end %>
  </tbody>
</table>

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