first init statistics

This commit is contained in:
NABU Jena 2025-07-08 02:15:43 +02:00
parent 8b0d78f25e
commit ab11148521
22 changed files with 3227 additions and 2 deletions

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

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