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">
|
2024-08-11 12:07:16 +02:00
|
|
|
<table class="table table-striped boardgame_table">
|
2024-08-10 22:45:08 +02:00
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th scope="col">Thumbnail</th>
|
|
|
|
|
<th scope="col">Naam</th>
|
|
|
|
|
<th scope="col">Beschrijving</th>
|
|
|
|
|
<th scope="col">Moeilijkheid</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
{% endblock body %}
|