Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 426 Bytes

DESCRIPTION.rst

File metadata and controls

23 lines (15 loc) · 426 Bytes

django-suit-rq

Support for the django-rq admin when using django-suit

Quick Start

  1. Install the package from pypi:

    pip install django-suit-rq
  2. Add "suit_rq" your INSTALLED_APPS. This needs to be added _before_ django_rq:

    INSTALLED_APPS = (
        'suit',
        'suit_rq',
        'django_rq',
    )