django-filterΒΆ
Django-filter is a generic, reusable application to alleviate writing some of the more mundane bits of view code. Specifically, it allows users to filter down a queryset based on a model’s fields, displaying the form to let them do this.
User Guide
- Installation
- Getting Started
- Integration with DRF
- Tips and Solutions
- Migrating to 1.0
- Enabling warnings
- MethodFilter and Filter.action replaced by Filter.method
- QuerySet methods are no longer proxied
- Filters no longer autogenerated when Meta.fields is not specified
- Move FilterSet options to Meta class
- FilterSet ordering replaced by OrderingFilter
- Deprecated
FILTERS_HELP_TEXT_FILTER
andFILTERS_HELP_TEXT_EXCLUDE
- DRF filter backend raises
TemplateDoesNotExist
exception
Reference Documentation
Developer Documentation