Installation

Installing django-adminfilters is as simple as checking out the source and adding it to your project or PYTHONPATH.

  1. First of all follow the instruction to install django_admin application,

  2. Either check out django-adminfilters from GitHub or to pull a release off PyPI. Doing pip install django-adminfilters or easy_install django-adminfilters is all that should be required.

  3. Either symlink the adminfilters directory into your project or copy the directory in. What ever works best for you.

Install test dependencies

If you want to run adminfilters tests you need extra requirements

pip install -U django-adminfilters

Configuration

Add adminfilters to your INSTALLED_APPS:

INSTALLED_APPS = (
    'adminfilters',
    ...
)