8 lines
180 B
Python
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"),
|
|
] |