django-angular
django-angular copied to clipboard
Django 2.x - No module named 'django.core.urlresolvers'
File "/home/www.django/incoan/env/lib/python3.5/site-packages/djng/forms/fields.py", line 13, in
SOLUTION: Change "django.core.urlresolvers" to "django.urls"
It's the only change that must be done in order to get things working with Django 2.0, isn't it?
No, you also have to change core/urlresolvers.py as well, after that it worked okay for me
use from django.urls import reverse
I also used from django.urls import reverse but still got error
i also used django.urls but still getting error