11 lines
191 B
Python
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"),
|
|
]
|