From 6dc02210afef618a84700b3db7884aa785b07bd7 Mon Sep 17 00:00:00 2001 From: Herculino Trotta Date: Tue, 29 Oct 2024 13:39:49 -0300 Subject: [PATCH] feat: add calendar view --- app/WYGIWYH/settings.py | 1 + app/WYGIWYH/urls.py | 1 + 2 files changed, 2 insertions(+) diff --git a/app/WYGIWYH/settings.py b/app/WYGIWYH/settings.py index 6262490..691e9db 100644 --- a/app/WYGIWYH/settings.py +++ b/app/WYGIWYH/settings.py @@ -71,6 +71,7 @@ INSTALLED_APPS = [ "drf_spectacular", "django_cotton", "apps.rules.apps.RulesConfig", + "apps.calendar_view.apps.CalendarViewConfig", ] MIDDLEWARE = [ diff --git a/app/WYGIWYH/urls.py b/app/WYGIWYH/urls.py index df82b58..671055e 100644 --- a/app/WYGIWYH/urls.py +++ b/app/WYGIWYH/urls.py @@ -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")), ]