first version

This commit is contained in:
2026-07-14 20:10:17 +02:00
commit 4040b4fdd9
32 changed files with 2176 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
from django.urls import path
from tracker import views
app_name = "tracker"
urlpatterns = [
path("today/", views.today, name="today"),
]