[Django]-Why am I getting a 404 for django_rq admin screen?

3👍

(r'^admin/django_rq/', include('django_rq.urls'))

must be before

url(r'^admin/', include(admin.site.urls))
👤Max

1👍

I’ve updated the installation instructions in django-rq’s README.rst to drop the “admin” prefix from django-rq’s URL pattern so Hugo’s issue shouldn’t happen again.

Leave a comment