Skip to main content

Simple list_filter that offers filtering by __isnull.

Project description

https://badge.fury.io/py/django-isnull-list-filter.svg https://travis-ci.org/petrdlouhy/django-isnull-list-filter.svg?branch=master https://codecov.io/gh/petrdlouhy/django-isnull-list-filter/branch/master/graph/badge.svg

Simple list_filter that offers filtering by __isnull or by blank char field.

Documentation

The full documentation is at https://django-isnull-list-filter.readthedocs.io.

Quickstart

Install django-isnull-list-filter:

pip install django-isnull-list-filter

or use development version:

pip install -e git+https://github.com/PetrDlouhy/django-isnull-list-filter#egg=django-isnull-list-filter

Directly use it in your admin:

from isnull_filter import isnull_filter
  class MyAdmin(admin.ModelAdmin):
     list_filter = (
         isnull_filter('author'),  # Just set the field
         isnull_filter('author', _("Hasn't got author")),  # Or you can override the default filter title
         isnull_filter('author', _("Has got author"), negate=True),  # And you can negate the condition
     )

or:

from isnull_filter import isblank_filter
  class MyAdmin(admin.ModelAdmin):
     list_filter = (
         isblank_filter('author'),  # Just set the field
         isblank_filter('author', _("Hasn't got author")),  # Or you can override the default filter title
         isblank_filter('author', _("Has got author"), negate=True),  # And you can negate the condition
     )

Features

  • Can be used on:
    • simple field

    • ForeignKeyField

    • related ForeignKeyField

    • ManyToManyField

    • OneToOneField

  • Default title can be overriden

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Author:

  • Petr Dlouhý

Tools used in rendering this package:

History

0.3.2 (2021-12-16)

  • Fix for Django 4.0

0.3.1 (2021-11-18)

  • Fix isblank_filter

0.3.0 (2021-11-17)

  • Add also isblan_filter

0.1.0 (2017-04-26)

  • First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-isnull-list-filter-0.3.2.tar.gz (18.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page