Files
site/app/views/wow_mounts/index.html.erb
2021-04-24 23:46:16 +02:00

21 lines
529 B
Plaintext

<h2>Mount list</h2>
<table class="table table-hover table-dark table-image">
<thead>
<tr>
<th scope="col"><%= t('wow_mounts.mount_list.name') %></th>
<th scope="col"><%= t('wow_mounts.mount_list.description') %></th>
<th scope="col"><%= t('wow_mounts.mount_list.owned') %></th>
</tr>
</thead>
<tbody>
<% @wow_mounts.each do |mount| %>
<tr>
<td><%= link_to mount.name, mount %></td>
<td><%= mount.description %></td>
<td></td>
</tr>
<% end %>
</tbody>
</table>