Sha256: 9fa347c80806bbd348fd90124ce6ddd0c8eef7694699b0e342701e8b9db1271e
Contents?: true
Size: 599 Bytes
Versions: 6
Compression:
Stored size: 599 Bytes
Contents
<h1>Listing testies</h1> <table> <tr> <th>First name</th> <th>Last name</th> <th>Address</th> <th>Some flag</th> </tr> <% @testies.each do |testy| %> <tr> <td><%=h testy.first_name %></td> <td><%=h testy.last_name %></td> <td><%=h testy.address %></td> <td><%=h testy.some_flag %></td> <td><%= link_to 'Show', testy %></td> <td><%= link_to 'Edit', edit_testy_path(testy) %></td> <td><%= link_to 'Destroy', testy, :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New testy', new_testy_path %>
Version data entries
6 entries across 3 versions & 1 rubygems