Skip to main content

Numeric filters for Django admin

Project description

Screenshot

django-admin-numeric-filter

django-admin-numeric-filter provides you several filter classes for Django admin which you can use to filter results in change list. It works in list_filter when a field name is defined as list where the first value is field name and second one is custom filter class (you can find classes below).

Don't forget to inherit your model admin from admin_actions.admin.NumericFilterModelAdmin to load custom CSS styles and JavaScript files declared in inner Media class.

Getting started

  1. Installation
pip install django-admin-numeric-filter
  1. Add admin_numeric_filter into INSTALLED_APPS in your settings file before django.contrib.admin.

Sample admin configuration

from admin_numeric_filter.admin import NumericFilterModelAdmin, SingleNumericFilter, RangeNumericFilter, \
    SliderNumericFilter

from .models import YourModel


class CustomSliderNumericFilter(SliderNumericFilter):
    MAX_DECIMALS = 2
    STEP = 10


@admin.register(YourModel)
class YourModelAdmin(NumericFilterModelAdmin):
    list_filter = (
        ('field_A', SingleNumericFilter), # Single field search, __gte lookup
        ('field_B', RangeNumericFilter), # Range search, __gte and __lte lookup
        ('field_C', SliderNumericFilter), # Same as range above but with slider
        ('field_D', CustomSliderNumericFilter), # Filter with custom attributes
    )

Filter classes

Class name Description
admin_actions.admin.SingleNumericFilter Single field search, __gte lookup
admin_actions.admin.RangeNumericFilter Range search, __gte and __lte lookup
admin_actions.admin.SliderNumericFilter Same as range above but with slider

Slider default options for certain field types

Django model field Step Decimal places
django.db.models.fields.DecimalField() Based on decimal places max precision from DB
django.db.models.fields.FloatField() Based on decimal places field decimal_places attr
django.db.models.fields.IntegerField() 1 0

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_admin_numeric_filter-0.1.9.tar.gz (16.9 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file django_admin_numeric_filter-0.1.9.tar.gz.

File metadata

File hashes

Hashes for django_admin_numeric_filter-0.1.9.tar.gz
Algorithm Hash digest
SHA256 22985bee625a08f76671e88647bfec0e04f2363e747bf26fad03603d4e32f0f1
MD5 44e271d26e1def41c0516f23dd9bf9c4
BLAKE2b-256 78a25df496e41037ae557034c991e2555293fd8505783291fffbe7f1a2cf858f

See more details on using hashes here.

File details

Details for the file django_admin_numeric_filter-0.1.9-py3-none-any.whl.

File metadata

File hashes

Hashes for django_admin_numeric_filter-0.1.9-py3-none-any.whl
Algorithm Hash digest
SHA256 54799a8529848703fb1b73970854210479317f97ec2475238d0ab4619c1e0430
MD5 4b8a1c835d382aedbd4b67c202020f9c
BLAKE2b-256 648156b150019a748cd70a2e419e3070ccf06ef8a26ae8d1e1d61eab9385861e

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