phase2: add modular apps, auth scaffolding, and base template routing
This commit is contained in:
@ -1,8 +1,11 @@
|
||||
from django.urls import path
|
||||
|
||||
from .views import health, home
|
||||
from .views import DashboardView, HomeView, health
|
||||
|
||||
app_name = "core"
|
||||
|
||||
urlpatterns = [
|
||||
path("", home, name="home"),
|
||||
path("", HomeView.as_view(), name="home"),
|
||||
path("dashboard/", DashboardView.as_view(), name="dashboard"),
|
||||
path("health/", health, name="health"),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user