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