feat(insights): sankey diagram (WIP)

This commit is contained in:
Herculino Trotta
2025-02-11 00:37:30 -03:00
parent b53a4a0286
commit 02376ad02b
6 changed files with 274 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
from django.urls import path
from . import views
urlpatterns = [
path("insights/sankey/", views.sankey, name="sankey"),
]