producthunt/products/urls.py

8 lines
181 B
Python
Raw Normal View History

2020-03-10 12:40:47 -07:00
from django.urls import path
from . import views
urlpatterns = [
path('create', views.create, name='create'),
2020-03-10 14:10:36 -07:00
path('<int:product_id>/', views.detail, name='detail'),
2020-03-10 12:40:47 -07:00
]