12 lines
256 B
Python
12 lines
256 B
Python
from django.urls import path
|
|
|
|
from tracker import views
|
|
|
|
app_name = "tracker"
|
|
|
|
# Both routes serve the same SPA shell; Vue's router picks the view.
|
|
urlpatterns = [
|
|
path("today/", views.app, name="today"),
|
|
path("recap/", views.app, name="recap"),
|
|
]
|