Files
Ai/irrigation/urls.py
T

16 lines
527 B
Python
Raw Normal View History

2026-03-19 22:54:29 +03:30
from django.urls import path
2026-03-21 23:50:36 +03:30
from .views import (
IrrigationMethodDetailView,
IrrigationMethodListCreateView,
IrrigationRecommendView,
2026-04-25 17:22:41 +03:30
WaterStressView,
2026-03-21 23:50:36 +03:30
)
2026-03-19 22:54:29 +03:30
urlpatterns = [
path("", IrrigationMethodListCreateView.as_view(), name="irrigation-list-create"),
path("<int:pk>/", IrrigationMethodDetailView.as_view(), name="irrigation-detail"),
2026-03-21 23:50:36 +03:30
path("recommend/", IrrigationRecommendView.as_view(), name="irrigation-recommend"),
2026-04-25 17:22:41 +03:30
path("water-stress/", WaterStressView.as_view(), name="water-stress"),
2026-03-19 22:54:29 +03:30
]