django-advanced-filters icon indicating copy to clipboard operation
django-advanced-filters copied to clipboard

Add advanced filtering abilities to Django admin

Results 62 django-advanced-filters issues
Sort by recently updated
recently updated
newest added

I am getting this field is required error while submitting the form for the first time even after filling the form and after the second time it got submitted. It...

Surgical updates to comply with basic CSP. This allows the required inline script for this django extension to run in a safe way. If [django CSP](https://django-csp.readthedocs.io/en/latest/) is not installed: everything...

Fixed building query for ``isnull``, ``istrue`` and ``isfalse`` lookups as well as initialising form.

**Describe the bug** After creating or updating a filter with an "Or (mark an or between blocks)" sometimes the order of the blocks gets changed moving the "Or ..." to...

bug
investigate

#### Describe the bug Trying to create any new filter leads to `AdvancedFilterQueryForm object has no attribute cleaned_data` error. #### Steps to reproduce - Have Django 3.2.0 installed - Try...

Hi, I have this issue when clicking the filter button. How can I fix it? The error in this code is inside the formset file. def _should_delete_form(self, form): """Return whether...

**Describe the bug** Throws an exception when I try to save and filter a super simple filter Stacktrace below **To Reproduce** Steps to reproduce the behavior: 1. built filter like...

I have a field in a django model made in this way created_by = models.ForeignKey(User, limit_choices_to={'is_staff': True}) django-advanced-filters show all user in the filter ingoring the limit_choices_to

``` class Article(models.Model): ... tags = models.ManyToManyField('Tag', blank=True, verbose_name=_(u"Tags ...")) ``` With a simple model like this, I can't filter Articles with tag "Cars" AND "Lamborghini"

enhancement