Skip to main content

No project description provided

Project description

django-admin-numeric-filter

Screenshot

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
pip install git+https://git@github.com/lukasvinclav/django-admin-numeric-filter.git
  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


@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
    )

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.2.tar.gz (16.1 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