Installation¶
Installing django-adminfilters is as simple as checking out the source and adding it to
your project or PYTHONPATH.
First of all follow the instruction to install django_admin application,
Either check out django-adminfilters from GitHub or to pull a release off PyPI. Doing
pip install django-adminfiltersoreasy_install django-adminfiltersis all that should be required.Either symlink the
adminfiltersdirectory 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',
...
)