django-more-admin-filters icon indicating copy to clipboard operation
django-more-admin-filters copied to clipboard

Django-more-admin-filters is a collection of django admin filters with a focus on filters using dropdown widgets, multiple choice filters and filters working with annotated attributes.

Results 15 django-more-admin-filters issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/43851500/187864969-32fae438-51d0-47aa-b526-14f16f098d23.png) it just not showing the filter selected "MultiSelectDropdownFilter"

Hi all. This is a feature request. I just has tried this great filter collection and everything is very good, but I am missing MultiSelectChoiceFilter created with MultiSelectMixin and admin.ChoicesFieldListFilter....

Building up on PR https://github.com/thomst/django-more-admin-filters/pull/18 by [artemiydruzhinin](https://github.com/artemiydruzhinin) (I have no write access on this branch), I [added tox and travis config for Django 4.0.x](https://github.com/thomst/django-more-admin-filters/commit/0021e3b8bee94f86fa6bf7a6238d20152d900dd3). Not too sure how to test...

Hi, while the majority of these filters work great, I noticed one minor issue: The `has_output` method in `MultiSelectRelatedFilter` as inherited by `MultiSelectMixin` disregards the `None` option which makes the...

First of all: thank you for providing this nice little lib! According to the setup.py Django

Hi, I am new to Django. I've been looking at the documentation but I can't understand how to customize an html from a library, for example this one. Could someone...

Hi @thomst! Thanks for your app. I offer add two classes for `choices`. Main difference with `MultiSelectFilter` that in filter correct display name, not value.

Hello, first of all thanks so much for the app, wouldn't know how to do it manually. I want to personalize the filter button, give it a icon or something...

Hello! Example code: _models.py_ ``` STATUS = [ (0, 'Enabled'), (1, 'Disabled'), (2, 'Deprecated'), ... ] ... status = models.IntegerField(choices=STATUS) ``` _admin.py_ ``` list_filter = [('status', MultiSelectFilter),] ``` As a...