<%= Region.count %> Regions

<% @countries.each do |country| %> <% if country.regions.count > 0 %> <% end %> <% end %>
<%= 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| %> <% end %>
<%= region.title %> (<%= region.teams.count %>) | <% region.cities.each_with_index do |city,index| %> <%= city.title %> (<%= city.teams.count %>) <% end %>