boardgame_site_v2/templates/statistics.jinja

17 lines
376 B
Text
Raw Permalink 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">
2024-08-25 11:38:18 +02:00
<div id="statistic_row" class="row g-4 ">
2024-08-12 08:27:10 +02:00
</div>
</div>
2024-08-14 10:16:54 +02:00
{% endblock body_block %}
2024-08-25 11:38:18 +02:00
{% 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 %}