<%= country.key %>
|
<%= image_tag "flags/24x24/#{country.key}.png" %>
<%= link_to country.title, short_country_path( country ) %>
|
(<%= country.code %>)
|
(<%= country.teams.count %>)
|
<% country.regions.each do |region| %>
<%= region.title %>
|
(<%= region.teams.count %>)
|
|
<% region.cities.each_with_index do |city,index| %>
<%= city.title %>
(<%= city.teams.count %>)
<% end %>
|
<% end %>
|
<% end %>
<% end %>