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")), ]