Skip to main content

Extra filters for django admin site

Project description

Collection of extra filters for the Django admin site

Demo can be found at https://django-smart-admin.herokuapp.com/

https://badge.fury.io/py/django-adminfilters.svg https://codecov.io/github/saxix/django-adminfilters/coverage.svg?branch=develop https://github.com/saxix/django-adminfilters/actions/workflows/test.yml/badge.svg

Filters

  • AutocompleteFilter

  • AllValuesComboFilter

  • AllValuesRadioFilter

  • BooleanRadioFilter

  • NumberFilter

  • RelatedFieldComboFilter

  • RelatedFieldRadioFilter

  • RelatedFieldCheckBoxFilter

  • StartWithFilter

  • PermissionPrefixFilter

  • MultipleSelectFieldListFilter

  • IntersectionFieldListFilter

  • UnionFieldListFilter

  • ForeignKeyFieldFilter

Usage examples

class MyModel(models.Model):
    index = models.CharField(max_length=255)
    name = models.CharField(max_length=255)
    age = models.IntegerField()
    flag = models.CharField(default="1", choices=(("0", "Flag 1"), ("1", "Flag 2"))
    household = models.ForeignKey('Household')
    custom = JSONField(default=dict, blank=True)

class MyModelAdmin(ModelAdmin):
    list_filter = (
        ("custom", JsonFieldFilter.factory(can_negate=False, options=True)),
        ("flag", ChoicesFieldComboFilter),
        ('household', AutoCompleteFilter)
        GenericLookupFieldFilter.factory('name__istartswith', can_negate=False, negated=True),
        ("age", NumberFilter),
    )

Run demo app

Note: django-adminfilters is also included in django-smart-admin, there is a running demo at https://django-smart-admin.herokuapp.com/

$ git clone https://github.com/saxix/django-adminfilters.git
$ cd django-adminfilters
$ python3 -m venv .venv
$ source .venv/bin/activate
$ make develop
$ make demo

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-adminfilters-1.9.0.tar.gz (41.8 kB view details)

Uploaded Source

File details

Details for the file django-adminfilters-1.9.0.tar.gz.

File metadata

  • Download URL: django-adminfilters-1.9.0.tar.gz
  • Upload date:
  • Size: 41.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 importlib_metadata/4.3.0 pkginfo/1.5.0.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.6.8

File hashes

Hashes for django-adminfilters-1.9.0.tar.gz
Algorithm Hash digest
SHA256 73c876b6039053ed39572b977d113ad220ba6b73a24330d08326927d6b013cdb
MD5 67dd4127e7207978067b28efa2b5dabe
BLAKE2b-256 6e1d4480819bbf76d1ae2cbb9495ed116bd5b68758ef09a5fea8bb712504f952

See more details on using hashes here.

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