This commit is contained in:
2026-04-25 17:22:41 +03:30
parent 569d520a5c
commit aa24fc22b0
124 changed files with 8491 additions and 2582 deletions
+2
View File
@@ -4,10 +4,12 @@ from .views import (
IrrigationMethodDetailView,
IrrigationMethodListCreateView,
IrrigationRecommendView,
WaterStressView,
)
urlpatterns = [
path("", IrrigationMethodListCreateView.as_view(), name="irrigation-list-create"),
path("<int:pk>/", IrrigationMethodDetailView.as_view(), name="irrigation-detail"),
path("recommend/", IrrigationRecommendView.as_view(), name="irrigation-recommend"),
path("water-stress/", WaterStressView.as_view(), name="water-stress"),
]