Sha256: 22ffe06fa9c6d46523caba85b370910e88faf1fcdf179e9c237b5a5ff69f7c91
Contents?: true
Size: 524 Bytes
Versions: 3
Compression:
Stored size: 524 Bytes
Contents
<% breweries_count = country.breweries.count %> <% if breweries_count > 0 %> <p> <span class='region-key'><%= country.key %></span> <%= country.title %> <span class='beer-count'>(<%= breweries_count %>)</span> </p> <tr> <td> <% country.breweries.order(:key).each_with_index do |brewery,i| %> <% if i > 0 %> • <% end %> <%= link_to brewery.title, brewery_path( brewery.id ) %> <% end %> </td> </tr> <% end %><!-- if breweries_count > 0 -->
Version data entries
3 entries across 3 versions & 1 rubygems