<%= Region.count %> Regions

<% @countries.each do |country| %> <% if country.regions.count > 0 %> <% end %> <% end %>
<%= country.key %> <%= image_tag_for_country( country ) %> <%= link_to "#{country.title} (#{country.code})", short_country_path( country ) %> (<%= country.regions.count %>) <% country.regions.each do |region| %> <% end %>
<%= region.key %> <%= region.title_w_synonyms %>
<%= render_tags( region.tags ) %>
(<%= region.cities.count %>) <% region.cities.each_with_index do |city,index| %> <%= '•' if index > 0 %> <%= city.title %> <% end %>