22 lines
392 B
Plaintext
22 lines
392 B
Plaintext
%h1 Listing games
|
|
|
|
%table
|
|
%thead
|
|
%tr
|
|
%th Title
|
|
%th
|
|
%th
|
|
%th
|
|
|
|
%tbody
|
|
- @games.each do |game|
|
|
%tr
|
|
%td= game.title
|
|
%td= link_to 'Show', game
|
|
%td= link_to 'Edit', edit_game_path(game)
|
|
%td= link_to 'Destroy', game, :method => :delete, :data => { :confirm => 'Are you sure?' }
|
|
|
|
%br
|
|
|
|
= link_to 'New Game', new_game_path
|