Remove importation of django-htcpcp-tea which is not compatible with django 4.2

This commit is contained in:
bleizi 2024-01-24 20:14:32 +01:00
parent 2f8c9b54e7
commit 516a7f4be5
No known key found for this signature in database
GPG Key ID: D46D7E3364433208
3 changed files with 7 additions and 5 deletions

View File

@ -41,7 +41,7 @@ INSTALLED_APPS = [
'bootstrap_datepicker_plus', 'bootstrap_datepicker_plus',
'colorfield', 'colorfield',
'crispy_forms', 'crispy_forms',
'django_htcpcp_tea', # 'django_htcpcp_tea',
'django_tables2', 'django_tables2',
'mailer', 'mailer',
'phonenumber_field', 'phonenumber_field',

View File

@ -30,9 +30,6 @@ urlpatterns = [
path('accounts/', include('django.contrib.auth.urls')), path('accounts/', include('django.contrib.auth.urls')),
path('api/', include('api.urls')), path('api/', include('api.urls')),
path('permission/', include('permission.urls')), path('permission/', include('permission.urls')),
# Make coffee
path('coffee/', include('django_htcpcp_tea.urls')),
] ]
# During development, serve static and media files # During development, serve static and media files
@ -57,6 +54,11 @@ if "debug_toolbar" in settings.INSTALLED_APPS:
path('__debug__/', include(debug_toolbar.urls)), path('__debug__/', include(debug_toolbar.urls)),
] + urlpatterns ] + urlpatterns
if "django_htcpcp_tea" in settings.INSTALLED_APPS:
# Make coffee
urlpatterns.append(
path('coffee/', include('django_htcpcp_tea.urls'))
)
handler400 = bad_request handler400 = bad_request
handler403 = permission_denied handler403 = permission_denied

View File

@ -6,7 +6,7 @@ django-colorfield~=0.11.0
django-crispy-forms~=2.1.0 django-crispy-forms~=2.1.0
django-extensions>=3.2.3 django-extensions>=3.2.3
django-filter~=23.5 django-filter~=23.5
django-htcpcp-tea~=0.8.1 #django-htcpcp-tea~=0.8.1
django-mailer~=2.3.1 django-mailer~=2.3.1
django-oauth-toolkit~=2.3.0 django-oauth-toolkit~=2.3.0
django-phonenumber-field~=7.3.0 django-phonenumber-field~=7.3.0