created apps.dashboard.urls & offloaded many of the app-specific paths from core.urls here instead

This commit is contained in:
Disco DeDisco
2026-01-03 01:47:27 -05:00
parent 7425b14363
commit a3ca56d606
2 changed files with 12 additions and 6 deletions

8
apps/dashboard/urls.py Normal file
View File

@@ -0,0 +1,8 @@
from django.urls import path
from . import views
urlpatterns = [
path('newlist', views.new_list, name='new_list'),
path('<int:list_id>/', views.view_list, name='view_list'),
path('<int:list_id>/add-item', views.add_item, name='add_item'),
]