Sha256: 58ff39ae19831e5808812dfa6fe884eb00f152a3cfbac896f16aeb284645e3b3

Contents?: true

Size: 1.21 KB

Versions: 3

Compression:

Stored size: 1.21 KB

Contents

<h3><%= Region.count %> Regions</h3>

<table>
<% @countries.each do |country| %>
 
<% if country.regions.count > 0 %>
  <tr>
    <td class='country-key'  style='vertical-align: top;'>
      <%= country.key %>
    </td>
    <td style='white-space: nowrap; vertical-align: top;'>
<%= flag_for_country( country ) %>
<%= link_to_country( country ) %>
    </td>
    <td  style='vertical-align: top;'>
      (<%= country.code %>)
    </td>
    <td  style='vertical-align: top;'>
<span class='team-count'>
(<%= country.teams.count %>)
</span>
    </td>
    <td>

      <table>
  <% country.regions.each do |region| %>
     <tr>
      <td>
        <%= region.title %>
      </td>
      <td style='white-space: nowrap;'>
      <span class='team-count'>
           (<%= region.teams.count %>)
      </span>
        | 
      </td>
      <td>
         <% region.cities.each_with_index do |city,index| %>
           <%= city.title %>
           <span class='team-count'>
             (<%= city.teams.count %>)
           </span>
         <% end %><!-- each city -->
      </td>
     </tr>
  <% end %> <!-- each region -->
      </table>
      
    </td>
  </tr>
<% end %><!-- if country.regions.count > 0 -->

<% end %><!-- each country -->
</table>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sportdb-admin-0.4.0 app/views/sport_db_admin/regions/index.html.erb
sportdb-admin-0.3.0 app/views/sport_db_admin/regions/index.html.erb
sportdb-admin-0.2.0 app/views/sport_db_admin/regions/index.html.erb