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

19 lines
448 B
Plaintext

<h2>Characters list</h2>
<table class="table table-hover table-dark table-image">
<thead>
<tr>
<th scope="col"><%= t('rp_worlds.world_list.name') %></th>
<th scope="col"><%= t('rp_worlds.world_list.description') %></th>
</tr>
</thead>
<tbody>
<% @rp_worlds.each do |world| %>
<tr>
<td><%= link_to world.name, world %></td>
<td><%= world.description %></td>
</tr>
<% end %>
</tbody>
</table>