9 lines
196 B
Python
9 lines
196 B
Python
|
from django.urls import include, path
|
||
|
|
||
|
from . import views
|
||
|
|
||
|
urlpatterns = [
|
||
|
path("", views.HomePageView.as_view(), name="index"),
|
||
|
path("accounts/", include("django.contrib.auth.urls")),
|
||
|
]
|