from django.urls import path from .views import home, auction_detail urlpatterns = [ path("", home, name="home"), path("auction//", auction_detail, name="auction_detail"), ]