Add dashboard app and update URL routing for farm dashboard

This commit is contained in:
2026-02-19 16:58:41 +03:30
parent 18a5d34750
commit c7c357668b
10 changed files with 1154 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
from django.urls import path
from .views import FarmDashboardCardsView
urlpatterns = [
path("cards/", FarmDashboardCardsView.as_view(), name="farm-dashboard-cards"),
path("", FarmDashboardCardsView.as_view(), name="farm-dashboard"),
]