Skip to main content

Django-filter is a reusable Django application for allowing users to filter queryset dynamically.

Project description

Django-filter is a reusable Django application for allowing users to filter queryset dynamically. It requires Python 2.4 or higher. For usage and installation instructions consult the docs directory.

Django-filter can be used for generating interfaces similar to the Django admin’s list_filter interface. It has an API very similar to Django’s ModelForms. For example if you had a Product model you could have a filterset for it with the code:

import django_filters

class ProductFilterSet(django_filters.FilterSet):
    class Meta:
        model = Product
        fields = ['name', 'price', 'manufacturer']

And then in your view you could do:

def product_list(request):
    filterset = ProductFilterSet(request.GET or None)
    return render_to_response('product/product_list.html',
        {'filterset': filterset})

See the docs directory for more information,

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-filter-0.5.0.tar.gz (14.3 kB view details)

Uploaded Source

File details

Details for the file django-filter-0.5.0.tar.gz.

File metadata

File hashes

Hashes for django-filter-0.5.0.tar.gz
Algorithm Hash digest
SHA256 8b7226bcb260ee5fcbff1994daa82a7a2119ffe68af22a2e9b7c3a699498c23f
MD5 c3186cfef159a2bbbae87225f9875846
BLAKE2b-256 27f3ef4683cc60412d6dc41aa947461fc6907b6aa214d5783124351264efc832

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