Useful for models with fields like finished
or last_updated
1 2 3 4 5 | class NullDateRangeFilter(DateRangeFilter):
def filter(self, qs, value):
if not value:
return qs.filter(**{f'{self.field_name}__isnull': True})
return super().filter(qs, value)
|
More like this
- Browser-native date input field by kytta 1 month ago
- Generate and render HTML Table by LLyaudet 1 month, 2 weeks ago
- My firs Snippets by GutemaG 1 month, 2 weeks ago
- FileField having auto upload_to path by junaidmgithub 2 months, 3 weeks ago
- LazyPrimaryKeyRelatedField by LLyaudet 3 months ago
Comments
Please login first before commenting.