2024-08-10 22:45:08 +02:00
|
|
|
{% extends "base.jinja" %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
|
|
|
|
|
|
<body onload="loadOwnedGames()">
|
|
|
|
|
|
2024-08-11 10:06:27 +02:00
|
|
|
|
2024-08-10 22:45:08 +02:00
|
|
|
<div class="table-responsive">
|
|
|
|
|
<table id="boardgame_table" class="table table-striped">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
2024-08-11 10:29:40 +02:00
|
|
|
<th scope="col">ID</th>
|
2024-08-10 22:45:08 +02:00
|
|
|
<th scope="col">Thumbnail</th>
|
|
|
|
|
<th scope="col">Naam</th>
|
|
|
|
|
<th scope="col">Beschrijving</th>
|
|
|
|
|
<th scope="col">Moeilijkheid</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody id="boardgame_table_tbody">
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
{% endblock body %}
|