django-rest-framework-filters
django-rest-framework-filters copied to clipboard
Better filtering for Django REST Framework
> Jazzband is a collaborative community to share the responsibility of maintaining Python-based projects. -- https://jazzband.co/ Many django projects are being maintained under jazzband. See https://github.com/jazzband.
Hello, Django 4.x has removed support for `ugettext` (in favor of plain `gettext`). It looks like the only place this is used is in `complex_ops.py`. It's been fixed in the...
I have 3 models (some fields are emitted to shorten the issue): ``` class Home(models.Model): address = models.CharField(max_length=150) formal_address = models.CharField(max_length=250, null=True, blank=True) homestead_number = models.CharField(null=True, blank=True, max_length=255) coords =...
Hi @philipn. It looks like both Travis and CodeCov are no longer posting status updates. The last Travis status commit was on #329 back in March, and the last CodeCov...
First of all thanks for this package, it's very useful! My models are structured like these: ```python class Info(TimeStampedModel): identifier = models.UUIDField(_('info'), default=uuid.uuid4, primary_key=True, editable=False) *** ``` ```python class Alert(TimeStampedModel):...
A specified in Django 3.0 release note, django.utils.six is removed. In case you need it, it is advised to use pypi packages instead. can you update?
What are your thoughts on adding optional `help_text` to the `FilterSet`. Here is an example of how we use it: ```pyhton class AttributeFilter(FilterSet): class Meta(object): model = Attribute fields =...
django-rest-framework-filters does not seem to support RelatedFilters with non-default relationships
I have some model code that looks like this: class Listing(BaseModel): user = models.ForeignKey(User, on_delete=models.CASCADE) book = models.ForeignKey(Book, to_field="isbn", on_delete=models.CASCADE) where importantly the `listing.book` attribute foreign keys to `Book` objects...
Current version on pypi only supports django-filter 1.x -- your latest allows django-filter 2.x? Is the project at a state where an update could be pushed? Thanks!