boardgame_site_v2/templates/owned.jinja
2025-02-06 16:49:22 +01:00

30 lines
No EOL
840 B
Django/Jinja

{% extends "base.jinja" %}
{% block body_block %}
<div class="form-group">
<input type="number" class="form-control" id="player_amount" placeholder="Aantal spelers">
</div>
<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>
{% endblock body_block %}
{% block extra_js_files %}
<script src="{{ url_for('static', filename='javascript/owned.js') }}" defer></script>
{% endblock extra_js_files %}