9 lines
174 B
Python
9 lines
174 B
Python
|
|
from django.urls import path
|
||
|
|
|
||
|
|
from .views import FarmAlertsTrackerView
|
||
|
|
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path("tracker/", FarmAlertsTrackerView.as_view(), name="farm-alerts-tracker"),
|
||
|
|
]
|