Listing streets

<% @streets.each do |street| %> <% end %>
Name City
<%= street.name %> <%= street.city.name %> <%= link_to 'Show', [@country, @city, street] %> <%= link_to 'Edit', edit_country_city_street_path(@country, @city, street) %> <%= link_to 'Destroy', [@country, @city, street], method: :delete, data: { confirm: 'Are you sure?' } %>

<%= link_to 'New Street', new_country_city_street_path(@country, @city) %>
<%= link_to 'Back to Cities', country_cities_path(@country) %>