10 lines
304 B
Plaintext
10 lines
304 B
Plaintext
|
<% content_for :title, t(".game_systems") %>
|
||
|
|
||
|
<%= link_to t(".new_game_system"), new_admin_game_system_path %>
|
||
|
|
||
|
<% @game_systems.each do |game_system| %>
|
||
|
<div id=<%= dom_id(game_system) %> class="game-system">
|
||
|
<%= link_to game_system.name, admin_game_system_path(game_system) %>
|
||
|
</div>
|
||
|
<% end %>
|