1 <h1>Search Results</h1>
4 <p>Sorry, there were no results</p>
10 <% for column in Game.content_columns %>
11 <th><%= column.human_name %></th>
15 <% for game in @games %>
17 <td><%=h game.id %></td>
18 <td><%=h game.checkedout? %></td>
19 <% for column in Game.content_columns %>
20 <td><%=h game.send(column.name) %></td>
22 <td><%= link_to 'Show', :action => 'show', :id => game %></td>
23 <td><%= link_to 'Edit', :action => 'edit', :id => game %></td>
24 <td><%= link_to 'Destroy', { :action => 'destroy', :id => game }, :confirm => 'Are you sure?', :post => true %></td>