feat(networth): add projected view

This commit is contained in:
Herculino Trotta
2024-12-15 01:22:33 -03:00
parent 77cc043b90
commit 188e737121
4 changed files with 122 additions and 10 deletions
+2 -1
View File
@@ -3,5 +3,6 @@ from django.urls import path
from . import views
urlpatterns = [
path("net-worth/", views.net_worth_main, name="net_worth"),
path("net-worth/current/", views.net_worth_current, name="net_worth_current"),
path("net-worth/projected/", views.net_worth_projected, name="net_worth_projected"),
]