Files
site/app/views/wow_reputations/index.html.erb

23 lines
816 B
Plaintext

<h2>Reputations list</h2>
<table class="table table-hover table-dark table-image">
<thead>
<tr>
<th scope="col"><%= t('wow_reputations.reputation_list.name') %></th>
<th scope="col"><%= t('wow_reputations.reputation_list.description') %></th>
<th scope="col"><%= t('wow_reputations.reputation_list.highest_reputation_character') %></th>
</tr>
</thead>
<tbody>
<% @wow_reputations.each do |reputation| %>
<tr>
<td><%= reputation.name %></td>
<td><%= reputation.description %></td>
<td><%= render partial: 'wow_reputations/standing', locals: { standing: reputation.wow_standings.joins(:wow_character).where(wow_character: { user: current_user }).order(raw: :desc).first } %></td>
</tr>
<% end %>
</tbody>
</table>
<%== pagy_bootstrap_nav(@pagy) %>