Django-more-admin-filters is a collection of django admin filters with a focus on filters using dropdown widgets, multiple choice filters and filters working with annotated attributes.
 
 
Go to file
Thomas Leichtfuß 0d55340275 [tests] import more_admin_filters.apps to push the coverage 2020-09-05 23:35:15 +02:00
more_admin_filters moved templates to an app specific folder 2020-09-05 13:31:24 +02:00
tests [tests] import more_admin_filters.apps to push the coverage 2020-09-05 23:35:15 +02:00
.gitignore [tests] setup selenium live testcase 2020-09-05 13:51:45 +02:00
.travis.yml fixed travis setup 2020-09-05 14:13:43 +02:00
LICENCE initial commit 2020-09-04 18:40:00 +02:00
MANIFEST.in renamed project to django-more-admin-filters 2020-09-05 11:15:46 +02:00
README.rst [README] fixed header 2020-09-05 11:30:48 +02:00
setup.py renamed project to django-more-admin-filters 2020-09-05 11:15:46 +02:00
tox.ini [tests] setup selenium for travis ci 2020-09-05 14:10:37 +02:00

README.rst

====================================
Welcome to django-more-admin-filters
====================================

.. image:: https://travis-ci.com/thomst/django-more-admin-filters.svg?branch=master
    :target: https://travis-ci.com/thomst/django-more-admin-filters
    
.. image:: https://coveralls.io/repos/github/thomst/django-more-admin-filters/badge.svg?branch=master
    :target: https://coveralls.io/github/thomst/django-more-admin-filters?branch=master

.. image:: https://img.shields.io/badge/python-3.4%20%7C%203.5%20%7C%203.6%20%7C%203.7%20%7C%203.8-blue
   :target: https://img.shields.io/badge/python-3.4%20%7C%203.5%20%7C%203.6%20%7C%203.7%20%7C%203.8-blue
   :alt: python: 3.4, 3.5, 3.6, 3.7, 3.8

.. image:: https://img.shields.io/badge/django-1.11%20%7C%202.0%20%7C%202.1%20%7C%202.2%20%7C%203.0-orange
   :target: https://img.shields.io/badge/django-1.11%20%7C%202.0%20%7C%202.1%20%7C%202.2%20%7C%203.0-orange
   :alt: django: 1.11, 2.0, 2.1, 2.2, 3.0


Description
===========
Django-more-admin-filters is a collection of django admin filters with a focus
on filters using dropdown widgets, multiple choice filters and filters working
with annotated attributes.


Installation
============
Install from pypi.org::

    pip install django-more-admin-filters

Add more_admin_filters to your installed apps::

    INSTALLED_APPS = [
        'more_admin_filters',
        ...
    ]

Use the filter classes with your ModelAdmin::

    from more_admin_filters import MultiSelectDropdownFilter

    class MyModelAdmin(admin.ModelAdmin):
        ...
        list_filter = [
            ('myfield', MultiSelectDropdownFilter),
        ]


Filter classes
==============
TODO