feat: add calendar view

This commit is contained in:
Herculino Trotta
2024-10-29 13:39:49 -03:00
parent 141af9e926
commit 6dc02210af
2 changed files with 2 additions and 0 deletions

View File

@@ -71,6 +71,7 @@ INSTALLED_APPS = [
"drf_spectacular",
"django_cotton",
"apps.rules.apps.RulesConfig",
"apps.calendar_view.apps.CalendarViewConfig",
]
MIDDLEWARE = [

View File

@@ -44,4 +44,5 @@ urlpatterns = [
path("", include("apps.yearly_overview.urls")),
path("", include("apps.currencies.urls")),
path("", include("apps.rules.urls")),
path("", include("apps.calendar_view.urls")),
]