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