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