jmb.filters is a reusable Django application for allowing users to filter querysets dynamically.
Project description
jmb.filter is a fork of django-filter whose main goal is to make life easy integrating django_filter in the django admin interface creating advanced search forms based on a description similar to search_list definition.
jmb.filter is a reusable Django application for allowing users to filter querysets dynamically.
Documentation on thunder-site.
Original documentation on read the docs
Requirements
Python 2.7+
Django 1.4+
Installation
Install using pip:
pip install jmb.filter
Or clone the repo and add to your PYTHONPATH:
hg clone https://hg@bitbucket.org/jumboteam/jmb.filters
Usage
jmb.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 jmb.filters class ProductFilter(jmb.filters.FilterSet): class Meta: model = Product fields = ['name', 'price', 'manufacturer']
And then in your view you could do:
def product_list(request): filter = ProductFilter(request.GET, queryset=Product.objects.all()) return render_to_response('my_app/template.html', {'filter': filter})
Support
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file jmb.filters-0.1.7.tar.gz
.
File metadata
- Download URL: jmb.filters-0.1.7.tar.gz
- Upload date:
- Size: 666.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 378a0277effbc3ab4ee7d88f03b84ed8f1472df5f705b4f1b9439b67d41d5108 |
|
MD5 | 7168ea049ea18d290984e55af3263180 |
|
BLAKE2b-256 | 167ca873cda59e003b45442df831e7e5e1f59c0449d4c0afee681367e7318a49 |