This commit is contained in:
2026-04-27 00:40:59 +03:30
parent 2cd96ceec6
commit 64e67c282c
56 changed files with 3912 additions and 745 deletions
+2 -1
View File
@@ -1,7 +1,8 @@
from django.urls import path
from .views import CropHealthSummaryView
from .views import CropHealthSummaryView, NdviHealthView
urlpatterns = [
path("ndvi-health/", NdviHealthView.as_view(), name="crop-health-ndvi-health"),
path("summary/", CropHealthSummaryView.as_view(), name="crop-health-summary"),
]