diff --git a/app/templates/_game_player_info.html b/app/templates/_game_player_info.html index b1d512c..cba60d2 100644 --- a/app/templates/_game_player_info.html +++ b/app/templates/_game_player_info.html @@ -3,15 +3,19 @@
My Role | -{{ current_user.}} | +{{ current_user.role_in_game(game).name }} | +
---|---|---|
Game State | +{{ game.state.name }} | |
Start Time | -10:00 | +{% if game.start_time %}{{ moment(game.start_time).format('DD-MM-YYYY, hh:mm')}}{% else %}-{% endif %} |
End Time | -18:00 | +{% if game.end_time %}{{ moment(game.end_time).format('DD-MM-YYYY, hh:mm')}}{% else %}-{% endif %} |