from django.urls import path from core.views import IndexView app_name = "index" urlpatterns = [ path("", IndexView.as_view(), name="main_index"), ]