First Commit
This commit is contained in:
commit
ce0758fbbb
496 changed files with 52062 additions and 0 deletions
7
shop/urls.py
Normal file
7
shop/urls.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
path('', views.home, name='shop_home'),
|
||||
path('buy/<int:item_id>/', views.buy, name='shop_buy'),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue