2024-08-10 22:45:08 +02:00
|
|
|
{% extends "base.jinja" %}
|
|
|
|
|
|
|
|
|
|
|
2024-08-14 10:16:54 +02:00
|
|
|
{% block body_block %}
|
2024-08-11 10:06:27 +02:00
|
|
|
|
2025-02-06 16:49:22 +01:00
|
|
|
<div class="form-group">
|
|
|
|
|
<input type="number" class="form-control" id="player_amount" placeholder="Aantal spelers">
|
|
|
|
|
</div>
|
|
|
|
|
|
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>
|
2024-08-11 16:20:53 +02:00
|
|
|
<th scope="col" class="no-sort">Thumbnail</th>
|
2024-08-10 22:45:08 +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-10 22:45:08 +02:00
|
|
|
<th scope="col">Moeilijkheid</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
|
2024-08-14 10:16:54 +02:00
|
|
|
{% endblock body_block %}
|
|
|
|
|
|
|
|
|
|
{% block extra_js_files %}
|
|
|
|
|
|
|
|
|
|
<script src="{{ url_for('static', filename='javascript/owned.js') }}" defer></script>
|
2024-08-10 22:45:08 +02:00
|
|
|
|
2024-08-14 10:16:54 +02:00
|
|
|
{% endblock extra_js_files %}
|