<%= Country.count %> Countries

<% @countries.each do |country| %> <% end %>
TLD FIFA ISO3 Motor UN? FIFA? Languages
<%= country.key %> <% if country.net.present? %> <% if country.net != country.key %> ≠ .<%= country.net %> <% else %> .<%= country.net %> <% end %> <% else %> x <% end %> <%= country.title %> <%= '*supra' if country.is_supra? %> <%= '*dependency' if country.is_dependency? %> <% if country.fifa.present? %> <% if country.fifa != country.code %> <%= country.fifa %> ≠ <% else %> <%= country.fifa %> <% end %> <% else %> x <% end %> <%= country.code %> <% if country.iso3.present? %> <% if country.iso3 != country.code %> ≠ <%= country.iso3 %> <% else %> <%= country.iso3 %> <% end %> <% else %> x <% end %> <% if country.motor.present? %> <%= country.motor %> <% else %> x <% end %> <% tags = country.tags.top.select { |tag| tag.key == 'un' } %> <% if tags.size > 0 %> Yes <% else %> x <% end %> <% tags = country.tags.top.select { |tag| tag.key == 'fifa' } %> <% if tags.size > 0 %> Yes <% else %> x <% end %> <% if country.langs.count > 0 %> <% country.langs.each_with_index do |lang,index| %> <%= lang.key %> <%= lang.title %> <% end %> <% else %> x <% end %>