|
|
@@ -4,7 +4,7 @@ from . import views
|
|
|
app_name = 'productsApp'
|
|
|
|
|
|
urlpatterns = [
|
|
|
- path('robot/', views.robot, name='robot'), # 家用机器人
|
|
|
- path('monitoring/', views.monitoring, name='monitoring'), # 智能监控
|
|
|
- path('face/', views.face, name='face'), # 人脸识别解决方案
|
|
|
+ path('products/<str:productName>', views.products, name='products'), # 家用机器人
|
|
|
+ # path('monitoring/', views.monitoring, name='monitoring'), # 智能监控
|
|
|
+ # path('face/', views.face, name='face'), # 人脸识别解决方案
|
|
|
]
|