Files
osiris/tracker/urls.py
T
2026-07-17 17:19:26 +02:00

11 lines
191 B
Python

from django.urls import path
from tracker import views
app_name = "tracker"
urlpatterns = [
path("today/", views.today, name="today"),
path("recap/", views.recap, name="recap"),
]