9 lines
301 B
Python
9 lines
301 B
Python
|
|
from django.urls import path
|
||
|
|
|
||
|
|
from .views import IrrigationMethodDetailView, IrrigationMethodListCreateView
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path("", IrrigationMethodListCreateView.as_view(), name="irrigation-list-create"),
|
||
|
|
path("<int:pk>/", IrrigationMethodDetailView.as_view(), name="irrigation-detail"),
|
||
|
|
]
|