Sha256: d08b49669e8d4e30ae233495834bb4349ce30380257d17338e478d98655dbfe9
Contents?: true
Size: 800 Bytes
Versions: 19
Compression:
Stored size: 800 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Listing Places</h1> <table> <thead> <tr> <th>Term</th> <th>City</th> <th>Country</th> <th>Latitude</th> <th>Longitude</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @places.each do |place| %> <tr> <td><%= place.term %></td> <td><%= place.city %></td> <td><%= place.country_id %></td> <td><%= place.latitude %></td> <td><%= place.longitude %></td> <td><%= link_to 'Show', place %></td> <td><%= link_to 'Edit', edit_place_path(place) %></td> <td><%= link_to 'Destroy', place, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Place', new_place_path %>
Version data entries
19 entries across 19 versions & 1 rubygems