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"), ]