This commit is contained in:
2026-04-30 04:00:07 +03:30
parent 2ab9866323
commit 8159190a84
12 changed files with 886 additions and 4 deletions
+2 -1
View File
@@ -1,10 +1,11 @@
from django.urls import path
from .views import ConfigView, RecommendationDetailView, RecommendationListView, RecommendView
from .views import ConfigView, PlanFromTextView, RecommendationDetailView, RecommendationListView, RecommendView
urlpatterns = [
path("config/", ConfigView.as_view(), name="fertilization-recommendation-config"),
path("recommendations/<uuid:recommendation_uuid>/", RecommendationDetailView.as_view(), name="fertilization-recommendation-detail"),
path("recommendations/", RecommendationListView.as_view(), name="fertilization-recommendation-list"),
path("recommend/", RecommendView.as_view(), name="fertilization-recommendation-recommend"),
path("plan-from-text/", PlanFromTextView.as_view(), name="fertilization-plan-from-text"),
]