24 lines
401 B
Plaintext
24 lines
401 B
Plaintext
%p
|
|
%b Status:
|
|
= @status
|
|
|
|
%p
|
|
%b Title:
|
|
= @game.title
|
|
|
|
- if @game.can_accomodate(current_user)
|
|
= link_to 'Join', game_join_path(@game)
|
|
|
|
- if @game.is_startable? && @game.already_has?(current_user)
|
|
= link_to 'Start', game_start_path(@game)
|
|
|
|
%p
|
|
%b Players:
|
|
%ol
|
|
- @game.players.each do |player|
|
|
%li= player
|
|
|
|
= link_to 'Edit', edit_game_path(@game)
|
|
\|
|
|
= link_to 'Back', games_path
|