diff --git a/note_kfet/settings/base.py b/note_kfet/settings/base.py
index f3c23f4d0c1d5e3f6cf4fd2cb2eae8efa771ea12..1e9e0752806f30a6a45a5619bafd98fa247d21cf 100644
--- a/note_kfet/settings/base.py
+++ b/note_kfet/settings/base.py
@@ -41,7 +41,7 @@ INSTALLED_APPS = [
     'bootstrap_datepicker_plus',
     'colorfield',
     'crispy_forms',
-    'django_htcpcp_tea',
+#    'django_htcpcp_tea',
     'django_tables2',
     'mailer',
     'phonenumber_field',
diff --git a/note_kfet/urls.py b/note_kfet/urls.py
index 7fc37fa77137c057e230f63a2cbaef7529159a34..72be36ea71303b6b3f9bbd6528b765e1069aa1cf 100644
--- a/note_kfet/urls.py
+++ b/note_kfet/urls.py
@@ -30,9 +30,6 @@ urlpatterns = [
     path('accounts/', include('django.contrib.auth.urls')),
     path('api/', include('api.urls')),
     path('permission/', include('permission.urls')),
-
-    # Make coffee
-    path('coffee/', include('django_htcpcp_tea.urls')),
 ]
 
 # During development, serve static and media files
@@ -57,6 +54,11 @@ if "debug_toolbar" in settings.INSTALLED_APPS:
         path('__debug__/', include(debug_toolbar.urls)),
     ] + urlpatterns
 
+if "django_htcpcp_tea" in settings.INSTALLED_APPS:
+    # Make coffee
+    urlpatterns.append(
+        path('coffee/', include('django_htcpcp_tea.urls'))
+    )
 
 handler400 = bad_request
 handler403 = permission_denied
diff --git a/requirements.txt b/requirements.txt
index 7af89d9f2c92d298a1ddff22ed1fca95e896a0fe..1750cd6667d1edf1971fe2e2d19d729285843560 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -6,7 +6,7 @@ django-colorfield~=0.11.0
 django-crispy-forms~=2.1.0
 django-extensions>=3.2.3
 django-filter~=23.5
-django-htcpcp-tea~=0.8.1
+#django-htcpcp-tea~=0.8.1
 django-mailer~=2.3.1
 django-oauth-toolkit~=2.3.0
 django-phonenumber-field~=7.3.0