mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 21:45:41 +00:00
chore: Delete numerous application modules, templates, static assets, documentation, and build files.
This commit is contained in:
14
products/urls.py
Normal file
14
products/urls.py
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
path('', views.products, name='products'),
|
||||
path('create_product', views.createProduct, name='create_product'),
|
||||
path('onOffproduct', views.onOffProduct, name='onOffproduct'),
|
||||
path('searchProduct', views.searchProduct, name='searchProduct'),
|
||||
path('editProduct/<int:productId>/', views.editProduct, name='editProduct'),
|
||||
path('createJson', views.createJson, name='createJson'),
|
||||
|
||||
|
||||
]
|
||||
Reference in New Issue
Block a user