38386-vm/core/urls.py
2026-02-12 16:53:09 +00:00

7 lines
190 B
Python

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