8 lines
196 B
Python
8 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")),
|
|
]
|