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