boardgame_site_v2/templates/wishlist.jinja

81 lines
2.5 KiB
Text
Raw Permalink Normal View History

2024-08-11 12:07:16 +02:00
{% extends "base.jinja" %}
2024-08-14 10:16:54 +02:00
{% block body_block %}
2024-08-11 12:07:16 +02:00
<body onload="loadWishlistedGames()">
<div class="table-responsive">
<table id="wishlist_table1" class="table table-striped boardgame_table">
<thead>
<tr>
<th scope="col">wishlist_priority</th>
2024-08-11 16:20:53 +02:00
<th scope="col" class="no-sort">Thumbnail</th>
2024-08-11 12:07:16 +02:00
<th scope="col">Naam</th>
2024-08-11 16:20:53 +02:00
<th scope="col">Spelers</th>
<th scope="col">Duratie</th>
2024-08-11 12:07:16 +02:00
<th scope="col">Moeilijkheid</th>
</tr>
</thead>
</table>
</div>
<div class="table-responsive">
<table id="wishlist_table2" class="table table-striped boardgame_table">
<thead>
<tr>
<th scope="col">wishlist_priority</th>
2024-08-11 16:20:53 +02:00
<th scope="col" class="no-sort">Thumbnail</th>
2024-08-11 12:07:16 +02:00
<th scope="col">Naam</th>
2024-08-11 16:20:53 +02:00
<th scope="col">Spelers</th>
<th scope="col">Duratie</th>
2024-08-11 12:07:16 +02:00
<th scope="col">Moeilijkheid</th>
</tr>
2024-08-11 16:20:53 +02:00
</tr>
2024-08-11 12:07:16 +02:00
</thead>
</table>
</div>
<div class="table-responsive">
<table id="wishlist_table3" class="table table-striped boardgame_table">
<thead>
<tr>
<th scope="col">wishlist_priority</th>
2024-08-11 16:20:53 +02:00
<th scope="col" class="no-sort">Thumbnail</th>
2024-08-11 12:07:16 +02:00
<th scope="col">Naam</th>
2024-08-11 16:20:53 +02:00
<th scope="col">Spelers</th>
<th scope="col">Duratie</th>
2024-08-11 12:07:16 +02:00
<th scope="col">Moeilijkheid</th>
</tr>
2024-08-11 16:20:53 +02:00
</tr>
2024-08-11 12:07:16 +02:00
</thead>
</table>
</div>
<div class="table-responsive">
<table id="wishlist_table4" class="table table-striped boardgame_table">
<thead>
<tr>
<th scope="col">wishlist_priority</th>
2024-08-11 16:20:53 +02:00
<th scope="col" class="no-sort">Thumbnail</th>
2024-08-11 12:07:16 +02:00
<th scope="col">Naam</th>
2024-08-11 16:20:53 +02:00
<th scope="col">Spelers</th>
<th scope="col">Duratie</th>
2024-08-11 12:07:16 +02:00
<th scope="col">Moeilijkheid</th>
</tr>
2024-08-11 16:20:53 +02:00
</tr>
2024-08-11 12:07:16 +02:00
</thead>
</table>
</div>
</body>
2024-08-14 10:16:54 +02:00
{% endblock body_block %}
{% block extra_js_files %}
<script src="{{ url_for('static', filename='javascript/wishlist.js') }}" defer></script>
{% endblock extra_js_files %}