9 lines
173 B
Python
9 lines
173 B
Python
from django.urls import path
|
|
|
|
from .views import index, dashboard
|
|
|
|
urlpatterns = [
|
|
path("", index, name="index"),
|
|
path("dashboard/", dashboard, name="dashboard"),
|
|
]
|