Skip to main content

Queryset can be filtered by a given list on the django admin page, just like: qs.filter(field__in=[list])

Project description

django-valueinlist-filter
=========================

Queryset can be filtered by a given list on the django admin page, just like: qs.filter(field__in=[list]).

Installation
------------

[sudo] pip install django-valueinlist-filter


Add valueinlist_filter to settings.INSTALLED_APPS:

INSTALLED_APPS = (
...
'valueinlist_filter'
)

And then, set a CharField field in a model like this:

class Model(models.Model):
...
serial_number = models.CharField(max_length=32)


If you want to filter the **serial_number** field by a given value list(split string by space), you can bind ValueInListFilter to this field:


from valueinlist_filter.filter import ValueInListFilter
from django.contrib import admin
from models import Model

class ModelAdmin(admin.ModelAdmin):
list_filter = (
('serial_number', ValueInListFilter), # bind filter to CharField
...
)

Finally, you will get a textarea form on the filter side bar, the textarea's change event will trigger form.

Added a 'screenshot.png' picture.

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-valueinlist-filter-0.1.3.tar.gz (3.0 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