Support for the django-rq admin when using django-suit
Django-rq already provides a nice admin interface, but it doesn't look good with django-suit. This fixes that.
-
Install the package from pypi:
pip install django-suit-rq
-
Add "suit_rq" your INSTALLED_APPS. This needs to be added before
django_rq
:INSTALLED_APPS = ( 'suit', 'suit_rq', 'django_rq', )