Sha256: f952d451b8c028cda9d335c1ada6bdaa9eb3585cdf4fb1d860cd010b3a07e7c6
Contents?: true
Size: 566 Bytes
Versions: 1
Compression:
Stored size: 566 Bytes
Contents
<h1>Listing cities</h1> <table> <tr> <th>Name</th> <th>Country</th> <th></th> <th></th> <th></th> </tr> <% @cities.each do |city| %> <tr> <td><%= city.name %></td> <td><%= city.country.name %></td> <td><%= link_to 'Show', [@country, city] %></td> <td><%= link_to 'Edit', edit_country_city_path(@country, city) %></td> <td><%= link_to 'Destroy', [@country, city], method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </table> <br /> <%= link_to 'New City', new_country_city_path(@country) %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dynamic_controller-0.0.1 | spec/dummy/app/views/cities/index.html.erb |