boardgame_site_v2/templates/owned.jinja

24 lines
525 B
Text
Raw Normal View History

{% extends "base.jinja" %}
{% block body %}
<body onload="loadOwnedGames()">
<div class="table-responsive">
2024-08-11 12:07:16 +02:00
<table class="table table-striped boardgame_table">
<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 %}