This commit is contained in:
2026-04-11 03:54:15 +03:30
parent 883573004c
commit 36d6b05a7f
68 changed files with 3487 additions and 841 deletions
+10
View File
@@ -0,0 +1,10 @@
from django.urls import path
from .views import FarmWeatherCardView, WaterNeedPredictionView, WaterStressIndexView, WaterSummaryView
urlpatterns = [
path("card/", FarmWeatherCardView.as_view(), name="water-card"),
path("need-prediction/", WaterNeedPredictionView.as_view(), name="water-need-prediction"),
path("stress-index/", WaterStressIndexView.as_view(), name="water-stress-index"),
path("summary/", WaterSummaryView.as_view(), name="water-summary"),
]