from django.urls import path from project.main import views urlpatterns = [ path("", views.HomeView.as_view(), name="home"), ]