This commit is contained in:
2026-04-25 17:22:41 +03:30
parent 569d520a5c
commit aa24fc22b0
124 changed files with 8491 additions and 2582 deletions
+8
View File
@@ -0,0 +1,8 @@
from django.urls import path
from .views import EconomicOverviewView
urlpatterns = [
path("overview/", EconomicOverviewView.as_view(), name="economic-overview"),
]