Python django_filters.DateFromToRangeFilter() Examples
The following are 1
code examples of django_filters.DateFromToRangeFilter().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
django_filters
, or try the search function
.
Example #1
Source File: filters.py From wagtail with BSD 3-Clause "New" or "Revised" License | 6 votes |
def filter_for_lookup(cls, field, lookup_type): filter_class, params = super().filter_for_lookup(field, lookup_type) if filter_class == django_filters.ChoiceFilter: params.setdefault('widget', ButtonSelect) params.setdefault('empty_label', _("All")) elif filter_class in [django_filters.DateFilter, django_filters.DateTimeFilter]: params.setdefault('widget', AdminDateInput) elif filter_class == django_filters.DateFromToRangeFilter: params.setdefault('widget', DateRangePickerWidget) elif filter_class == django_filters.BooleanFilter: params.setdefault('widget', BooleanButtonSelect) return filter_class, params