38936-vm/core/urls.py
2026-03-02 15:46:47 +00:00

8 lines
180 B
Python

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