app/views/clubs/index.html.erb
<% head_info :title, t('navbars.top.club_ratings') %>
<% head_info :description, t('.description') %>
<h2><%= t 'navbars.top.club_ratings' %></h2>
<p><%= t '.how_to_add_new_club_html', mail: ENV['INFO_EMAIL'] %></p>
<table class="table table-striped">
<thead data-controller="table-head">
<tr>
<th><%= t '.name' %></th>
<th>
<span class="sort-arrow" data-action="click->table-head#toggleSort"><i class="fa fa-caret-up"></i></span> <%= t '.athletes' %>
</th>
<th>
<span class="sort-arrow" data-action="click->table-head#toggleSort"><i class="fa fa-angle-up"></i></span> <%= t '.results' %>
</th>
<th class="hidden-on-phone">
<span class="sort-arrow" data-action="click->table-head#toggleSort"><i class="fa fa-angle-up"></i></span> <%= t '.volunteering' %>
</th>
</tr>
</thead>
<tbody class="table-group-divider">
<%= render partial: 'club', collection: @clubs %>
</tbody>
</table>