update statistics

This commit is contained in:
NABU Jena 2025-07-08 07:43:16 +02:00
parent ab11148521
commit f8104b627b
8 changed files with 1756 additions and 0 deletions

8
app/statistik/urls.py Normal file
View file

@ -0,0 +1,8 @@
from django.urls import path
from . import views
app_name = 'statistik'
urlpatterns = [
path('', views.StatistikView.as_view(), name='overview'),
]