django-advanced-filters
django-advanced-filters copied to clipboard
Add advanced filtering abilities to Django admin
fixes #21 . I hope someone has a bit of time to test this a bit. It works fin for me, but I'm not sure the code I removed was...
CHANGES: 1. Templates: - Removed the title inside the change_form template. - Commented the _af_handler.destroy() call inside common_js_init because I didn't want to clean up every time the add rule...
**Describe the bug** No matter what type you select, when editing an advanced filter, it says the type (or operator) is *always* a DateTime Range, even though that isn't true.
If I create an admin model : ``` class MyModelAdmin(AdminAdvancedFiltersMixin, admin.ModelAdmin): advanced_filter_fields = ['related_obj'] # related_obj is a foreign key ``` And try to create a custom filter with `related_obj`...
Hello! Thanks for creating this module. It is quite useful. In the README instructions, it says >Add `url(r'^advanced_filters/', include('advanced_filters.urls'))` to your project's urlconf. What do you think about importing the...
When opening the edit page of a saved filter, it will in the first second show the correct selected value of an operator (for example `contains`) but then suddenly jumps...
Are there any best practices around how to further limit the results of the `GetFieldName` view? In my particular use case, all of the objects in my system belong to...
Would it be possible to make filters without saving them, a little like a search bar ? Instead of having only `Save` and `Filter and save`, having button `Filter` ?
Howdy, What would you think of having an option to share a filter with other users/groups? I'm running into a use case where users are creating the same filters over...