djangocms-forms icon indicating copy to clipboard operation
djangocms-forms copied to clipboard

compatibility with django 3.9

Open Emirov opened this issue 3 years ago • 1 comments

I had this error when trying to urlpatterns = patterns( ... url(r'^', include('djangocms_forms.urls')), ... )

get this error: ModuleNotFoundError: No module named 'django.core.urlresolvers' The solution is to replace django.core.urlresolvers by django.utls. I can do it by my own but I am using docker for django-cms so updating some modules is a little difficult

Emirov avatar Oct 29 '21 14:10 Emirov

You got it - https://github.com/avryhof/djangocms-forms https://pypi.python.org/pypi/djangocms-forms-maintained/

pip install --upgrade djsngocms-forms-maintained

avryhof avatar Jun 14 '22 19:06 avryhof