25 lines
No EOL
585 B
Django/Jinja
25 lines
No EOL
585 B
Django/Jinja
{% extends "base.jinja" %}
|
|
|
|
|
|
{% block body %}
|
|
|
|
<body onload="loadOwnedGames()">
|
|
|
|
|
|
<div class="table-responsive">
|
|
<table class="table table-striped boardgame_table">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" class="no-sort">Thumbnail</th>
|
|
<th scope="col">Naam</th>
|
|
<th scope="col">Spelers</th>
|
|
<th scope="col">Duratie</th>
|
|
<th scope="col">Moeilijkheid</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
{% endblock body %} |