boardgame_site_v2/templates/statistics.jinja

17 lines
384 B
Text
Raw Normal View History

2024-08-11 23:04:30 +02:00
{% extends "base.jinja" %}
2024-08-14 10:16:54 +02:00
{% block body_block %}
2024-08-11 23:04:30 +02:00
2024-08-14 16:16:28 +02:00
<div class="container">
<div id="statistic_row" class="row row-cols-auto g-4 ">
2024-08-12 08:27:10 +02:00
</div>
</div>
2024-08-14 10:16:54 +02:00
{% endblock body_block %}
{% block extra_js_files %}
2024-08-11 23:04:30 +02:00
2024-08-14 10:16:54 +02:00
<script src="{{ url_for('static', filename='javascript/statistics.js') }}" defer></script>
2024-08-11 23:04:30 +02:00
2024-08-14 10:16:54 +02:00
{% endblock extra_js_files %}