You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
829 B
29 lines
829 B
<h2>Game Info</h2> |
|
<div class="table"> |
|
<table class="table"> |
|
<tr> |
|
<th>My Game</th> |
|
<td>{{ game.name.title() }}</td> |
|
</tr> |
|
<tr> |
|
<th>My Name</th> |
|
<td>{{ current_user.name.title() }}</td> |
|
</tr> |
|
<tr> |
|
<th>My Role</th> |
|
<td>{{ current_user.role_in_game(game).name.title() }}</td> |
|
</tr> |
|
<tr> |
|
<th>Game State</th> |
|
<td>{{ game.state.name.title() }}</td> |
|
</tr> |
|
<tr> |
|
<th>Start Time</th> |
|
<td>{% if game.start_time %}{{ moment(game.start_time).format('DD-MM-YYYY, hh:mm')}}{% else %}-{% endif %}</td> |
|
</tr> |
|
<tr> |
|
<th>End Time</th> |
|
<td>{% if game.end_time %}{{ moment(game.end_time).format('DD-MM-YYYY, hh:mm')}}{% else %}-{% endif %}</td> |
|
</tr> |
|
</table> |
|
</div>
|
|
|