Sha256: 850a2d6fea3698acfbd4ebc950b8f57d60f90fa799a6ce426a83dbc2400e7c12
Contents?: true
Size: 490 Bytes
Versions: 7
Compression:
Stored size: 490 Bytes
Contents
<h1>Listing homes</h1> <table> <tr> <th>Name</th> <th>Value</th> <th></th> <th></th> <th></th> </tr> <% @homes.each do |home| %> <tr> <td><%= home.name %></td> <td><%= home.value %></td> <td><%= link_to 'Show', home %></td> <td><%= link_to 'Edit', edit_home_path(home) %></td> <td><%= link_to 'Destroy', home, :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Home', new_home_path %>
Version data entries
7 entries across 7 versions & 1 rubygems