skeleton to all sites (i hope)

This commit is contained in:
2025-06-03 23:26:30 +02:00
parent 206f7d6fb3
commit f65a174089
12 changed files with 357 additions and 63 deletions

View File

@@ -0,0 +1,24 @@
{% extends "base.html" %}
{% block title %}Statystyki{% endblock %}
{% block content %}
<section class="section-stats">
<h2>Ogólne statystyki</h2>
<div class="stats">
<div class="stat-box">
<h3>{{ trophy.name}}</h3>
<p>Gole</p>
</div>
<div class="stat-box">
<h3>{{ trophy.name }}</h3>
<p>Asysty</p>
</div>
<div class="stat-box">
<h3>{{ trophy.name }}</h3>
<p>Występy</p>
</div>
</div>
</section>
{% endblock %}