Add basic order model

This commit is contained in:
2022-09-25 17:29:45 +03:00
parent bf4af285e8
commit 99415d4f7e
2 changed files with 93 additions and 7 deletions

View File

@@ -20,11 +20,5 @@ from . import views
urlpatterns = [
path('', views.orders_list, name='orders-list'),
path('create', views.order_create, name='order-create'),
# path('account', views.account, name='account'),
# path('account_<str:action>', views.account_action, name='account_action'),
#
# path('catalog/', views.catalog, name='catalog'),
# path('catalog/<int:product_id>/', views.product_view, name='product_view'),
# path('cart', views.cart, name='cart'),
]