diff --git a/cmsmanage/settings.py b/cmsmanage/settings.py index 6b5e038..8d03638 100644 --- a/cmsmanage/settings.py +++ b/cmsmanage/settings.py @@ -25,8 +25,8 @@ class Base(Configuration): "django_admin_logs", "django_object_actions", "widget_tweaks", - "markdownx", - "recurrence", + # "markdownx", + # "recurrence", "rest_framework", "rest_framework.authtoken", "django_q", @@ -37,7 +37,7 @@ class Base(Configuration): "django_mysql", "django_sendfile", "django_bootstrap5", - "tasks.apps.TasksConfig", + # "tasks.apps.TasksConfig", "rentals.apps.RentalsConfig", "membershipworks.apps.MembershipworksConfig", "paperwork.apps.PaperworkConfig", diff --git a/cmsmanage/urls.py b/cmsmanage/urls.py index cc002cc..2e98f6b 100644 --- a/cmsmanage/urls.py +++ b/cmsmanage/urls.py @@ -31,7 +31,7 @@ router.registry.extend(membershipworks_router.registry) urlpatterns = [ path("", include("dashboard.urls")), - path("tasks/", include("tasks.urls")), + # path("tasks/", include("tasks.urls")), path("rentals/", include("rentals.urls")), path("membershipworks/", include("membershipworks.urls")), path("paperwork/", include("paperwork.urls")), @@ -59,7 +59,7 @@ urlpatterns = [ ), ), path("api-auth/", include("rest_framework.urls")), - path("markdownx/", include("markdownx.urls")), + # path("markdownx/", include("markdownx.urls")), ] if settings.DEBUG: