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.
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block app_content %}
|
|
|
|
<h1>{{ game.name }} Dashboard</h1>
|
|
|
|
|
|
|
|
<h2>Players:</h2>
|
|
|
|
<div class="table-responsive">
|
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th scope="col">Player Name</th>
|
|
|
|
<th scope="col">Role</th>
|
|
|
|
<th scope="col">Objectives found</th>
|
|
|
|
<th scope="col">Bunnies Caught</th>
|
|
|
|
<th scope="col">Last location</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for player in game.players %}
|
|
|
|
<tr>
|
|
|
|
<td><a href="{{ url_for('game_player', game_name = game.name, player_name = player.name) }}">{{ player.name }}</a></td>
|
|
|
|
{% for gameplayer in player.player_games if gameplayer.game == game %}
|
|
|
|
<td>{{ gameplayer.role.name }}</td>
|
|
|
|
{% endfor %}
|
|
|
|
<td>{{ "Placeholder" }}</td>
|
|
|
|
<td>{{ "Placeholder" }}</td>
|
|
|
|
<td> Placeholder <td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|