feat(insights): sankey diagram (WIP)

This commit is contained in:
Herculino Trotta
2025-02-11 00:37:30 -03:00
parent a3a8791e96
commit 9c55dac866
6 changed files with 274 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
from django.urls import path
from . import views
urlpatterns = [
path("insights/sankey/", views.sankey, name="sankey"),
]