Browse Source

Remove second table

QR-seachgame
Burathar 3 years ago
parent
commit
c2f7903fc3
  1. 18
      app/templates/game_player.html

18
app/templates/game_player.html

@ -94,24 +94,6 @@ @@ -94,24 +94,6 @@
</table>
</div>
</div>
<div class="table">
<table class="table">
<thead>
<tr>
<th scope="col">Objective Name</th>
<th scope="col">Found</th>
</tr>
</thead>
<tbody>
{% for objective in game.objectives %}
<tr>
<td>{{ objective.name }}</td>
<td>{{ 'Yes' if objective in current_user.player_in(game).found_objectives else 'No' }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endif %}
{% endblock %}

Loading…
Cancel
Save