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.

41 lines
1.2 KiB

{% extends 'base.html' %}
{% block app_content %}
4 years ago
<h1>Hi, {{ current_user.name }}!</h1>
4 years ago
<h2>My games:</h2>
{% if current_user.games %}
4 years ago
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th scope="col">Game Name</th>
<th scope="col">Current State</th>
4 years ago
<th scope="col">Start Time</th>
<th scope="col">End Time</th>
<th scope="col">My Role</th>
</tr>
</thead>
<tbody>
{% for game in current_user.games %}
<tr>
<td>{{ game.name }}</td>
<td>{{ game.state }}</td>
<td>{{ game.start_time }}</td>
<td>{{ game.end_time }}</td>
<td>
{% for gameplayer in current_user.player_games %}
{% if gameplayer.game == game %}{{ gameplayer.role }}{% endif %}
{% endfor %}
</td>
4 years ago
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% else %}
<div class="alert alert-info" role="alert">
You don't participate in any game yet 😢
</div>
{% endif %}
4 years ago
{% endblock %}