28 lines
608 B
Plaintext
28 lines
608 B
Plaintext
<p id="notice"><%= notice %></p>
|
|
|
|
<h1>Rp Worlds</h1>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th><%= t('rp_worlds.world_list.name') %></th>
|
|
<th colspan="3"></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @rp_worlds.each do |rp_world| %>
|
|
<tr>
|
|
<td><%= rp_world.name %></td>
|
|
<td><%= link_to 'Show', rp_world %></td>
|
|
<td><%= link_to 'Edit', edit_rp_world_path(rp_world) %></td>
|
|
<td><%= link_to 'Destroy', rp_world, method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<br>
|
|
|
|
<%= link_to 'New Rp World', new_rp_world_path %>
|