vol1ura/Sat_9am_5km

View on GitHub
app/views/ratings/_ratings_table.html.erb

Summary

Maintainability
Test Coverage
<%= turbo_frame_tag 'ratings_table' do %>
  <table class="table table-striped">
    <thead>
      <tr>
        <th>#</th>
        <th><%= t '.name' %></th>
        <th><%= t ".#{@order}" %></th>
        <th class="hidden-on-phone"><%= t '.club' %></th>
      </tr>
    </thead>
    <tbody class="table-group-divider">
      <%= render partial: 'athlete', collection: @athletes %>
    </tbody>
  </table>
<% end %>