django-url-filter
django-url-filter copied to clipboard
Django URL Filter provides a safe way to filter data via human-friendly URLs.
Hello there, I'm writing this issue, since at this time, this package development seems to have stalled. There are several unanswered issues and most importantly unanswered pull requests. This is...
Django4
Trivial changes for Django 4 compatibility. If these introduce Django 3 compatibility issues (which I doubt) then the change may need to be surrounded by a version check.
I was supplying a queryset which was already distcint! And moreover I am using .distinct(field) in order to make a complex interaction between url filters and Window functions work. Works...
Fixes #102
When running this package in django 3.1, this warning message is shown: ``` /usr/local/lib/python3.9/site-packages/url_filter/validators.py:19: RemovedInDjango40Warning: django.utils.translation.ungettext_lazy() is deprecated in favor of django.utils.translation.ngettext_lazy(). ```
# Resume My application uses UUIDField as a primary key. So every model inherit ``` class BaseModel(models.Model): id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False) ``` I want to filter by this _id_!...
- close #110