Files
site/app/views/wow_characters/index.html.erb
2021-05-30 17:49:54 +02:00

35 lines
1.5 KiB
Plaintext

<h2>Characters list</h2>
<table class="table table-hover table-dark table-image">
<thead>
<tr>
<th scope="col"></th>
<th scope="col"><%= t('wow_characters.character_list.name') %></th>
<th scope="col"><%= t('wow_characters.character_list.guild') %></th>
<th scope="col"><%= t('wow_characters.character_list.realm') %></th>
<th scope="col"><%= t('wow_characters.character_list.race') %></th>
<th scope="col"><%= t('wow_characters.character_list.class') %></th>
<th scope="col"><%= t('wow_characters.character_list.faction') %></th>
<th scope="col"><%= t('wow_characters.character_list.covenant') %></th>
<th scope="col"><%= t('wow_characters.character_list.level') %></th>
</tr>
</thead>
<tbody>
<% @wow_characters.each do |character| %>
<tr>
<td><% if character.wow_character_medium %>
<img class="rounded-circle border border-white" src=<%= character.wow_character_medium.avatar %> alt="avatar">
<% end %></td>
<td><%= link_to character.name, character %></td>
<td><%= character.wow_guild&.name %></td>
<td><%= character.wow_realm.name %></td>
<td><%= gender_race_name(character.gender, character.wow_race) %></td>
<td><%= gender_class_name(character.gender, character.wow_class) %></td>
<td><%= character.translated_faction %></td>
<td><%= character.wow_covenant&.name %></td>
<td><%= character.level %></td>
</tr>
<% end %>
</tbody>
</table>