Closed dirkjankrijnders closed 4 years ago
At first glance, it's not clear that this is a bug with data wizard. Is admin.site.urls included in your urls.py?
Hmm, it looks like this can happen if "data_wizard"
is listed before "django.contrib.admin"
in INSTALLED_APPS
.
Ok, there was a urlconf check in data_wizard.apps.WizardConfig
that was interfering with the admin (but only if data_wizard
was listed first). The check is not really needed anymore so I removed it and the order now does not matter.
That fixed it indeed. I just tested with the latest code from git and the installation was flawless. Thanks for looking into it.
Hi,
I just installed django-data-wizard to try it out according to the README.md. However as soon as I add data_wizard to my INSTALLED_APPS I get the error below when trying to access /admin. This is running the latest version from git, but I also tried the pypi version and I tried django 2.2.6. All with the same result? Did I miss something? Where do I start looking? Thanks,
Dirkjan