from django.urls import path
from .views import *

urlpatterns = [
    path('<int:pk>', product_detail_view, name='product_detail'),
    path('', product_list_view, name='product_list'),
    #path('new/', ProductCreateView.as_view(), name='product_create'),
    path('tool/<int:pk>', tool_detail_view, name='tool_detail'),
    #path('tool/new/', ToolCreateView.as_view(), name='tool_create'),
]
