67 lines
No EOL
2 KiB
Django/Jinja
67 lines
No EOL
2 KiB
Django/Jinja
{% extends "base.jinja" %}
|
|
|
|
|
|
{% block body %}
|
|
|
|
<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>
|
|
<th scope="col">Thumbnail</th>
|
|
<th scope="col">Naam</th>
|
|
<th scope="col">Beschrijving</th>
|
|
<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>
|
|
<th scope="col">Thumbnail</th>
|
|
<th scope="col">Naam</th>
|
|
<th scope="col">Beschrijving</th>
|
|
<th scope="col">Moeilijkheid</th>
|
|
</tr>
|
|
</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>
|
|
<th scope="col">Thumbnail</th>
|
|
<th scope="col">Naam</th>
|
|
<th scope="col">Beschrijving</th>
|
|
<th scope="col">Moeilijkheid</th>
|
|
</tr>
|
|
</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>
|
|
<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 %} |