Skip to main content

Render admin list filters with Django's autocomplete widget

Project description

PyPI version Tests Ruff

Django Admin Autocomplete Filters

Maintained continuation of the original project by Farhan Khan

This fork modernizes packaging (PEP 621), adds CI, and supports Django 4.2–5.2 and Python 3.10+.

A simple Django app to render list filters in django admin using an autocomplete widget. This app is heavily inspired by dal-admin-filters.

Overview:

Django comes preshipped with an admin panel which is a great utility to create quick CRUD's.

Version 2.0 came with a much needed autocomplete_fields property which uses a select2 widget to load the options asynchronously. We leverage this in django-admin-list-filter.

Requirements:

  • Django >= 4.2
  • Python >= 3.10

Supported Versions

  • Python: 3.10, 3.11, 3.12
  • Django: 4.2, 5.0, 5.1, 5.2

See the CI badge for the full matrix.

Features:

Installation:

You can install it via pip or poetry. To get the latest version clone this repo.

pip install django-admin-autocomplete-filters

or

poetry add django-admin-autocomplete-filters@latest

Add admin_auto_filters to your INSTALLED_APPS inside settings.py of your project.

Breaking Changes compared to original project:

  • CustomSearchView registration (Django 4.2+): pass the admin site instead of a model admin instance. See examples below.
    • Before: CustomSearchView.as_view(model_admin=self)
    • Now: CustomSearchView.as_view(admin_site=self.admin_site)
    • Rationale: the view uses Django’s process_request() to infer the target model admin from query params and performs core permission/validation checks. The admin site wrapper (self.admin_site.admin_view(...)) continues to enforce staff/CSRF safeguards.

Usage:

Let's say we have following models:

from django.db import models

class Artist(models.Model):
    name = models.CharField(max_length=128)

class Album(models.Model):
    name = models.CharField(max_length=64)
    artist = models.ForeignKey(Artist, on_delete=models.CASCADE)
    cover = models.CharField(max_length=256, null=True, default=None)

And you would like to filter results in AlbumAdmin on the basis of artist. You need to define search fields in Artist and then define filter like this:

from django.contrib import admin
from admin_auto_filters.filters import AutocompleteFilter


class ArtistFilter(AutocompleteFilter):
    title = 'Artist' # display title
    field_name = 'artist' # name of the foreign key field


class ArtistAdmin(admin.ModelAdmin):
    search_fields = ['name'] # this is required for django's autocomplete functionality
    # ...


class AlbumAdmin(admin.ModelAdmin):
    list_filter = [ArtistFilter]
    # ...

After following these steps you may see the filter as:

Release Process

  • Bump admin_auto_filters.__version__ and update CHANGELOG.md.
  • Ensure CI is green on main.
  • Create a tag vX.Y.Z and push; the GitHub Actions workflow will build and publish to PyPI via trusted publishing.

Contributing

See CONTRIBUTING.md for local setup, linting, typing, tests, and pre-commit hooks.

Functionality to provide a custom view for search:

You can also register your custom view instead of using Django admin's search_results to control the results in the autocomplete. For this you will need to create your custom view and register the URL in your admin class as shown below: In your views.py/admin.py/'filters.py':

from admin_auto_filters.views import AutocompleteJsonView
from django.contrib import admin
from django.urls import path

from django.shortcuts import reverse
from admin_auto_filters.filters import AutocompleteFilter


class ArtistFilter(AutocompleteFilter):
    title = 'Artist'
    field_name = 'artist'

    def get_autocomplete_url(self, request, model_admin):
        return reverse('admin:custom_search')


class CustomSearchView(AutocompleteJsonView):
    def get_queryset(self):
        """
           your custom logic goes here.
        """
        queryset = super().get_queryset()
        queryset = queryset.order_by('name')
        return queryset


class AlbumAdmin(admin.ModelAdmin):
    list_filter = [
        ArtistFilter,
    ]

    def get_urls(self):
        urls = super().get_urls()
        custom_urls = [
            path(
            'custom_search/', self.admin_site.admin_view(CustomSearchView.as_view(admin_site=self.admin_site)), name='custom_search'
            ),
        ]
        return custom_urls + urls

Shortcut for creating filters:

It's also possible to use the AutocompleteFilterFactory shortcut to create filters on the fly, as shown below. Nested relations are supported too, with no need to specify the model.

from django.contrib import admin
from admin_auto_filters.filters import AutocompleteFilterFactory


class AlbumAdmin(admin.ModelAdmin):
    list_filter = [
        AutocompleteFilterFactory('Artist', 'artist', 'admin:custom_search', True)
    ]

    def get_urls(self):
        """As above..."""

More Examples

Nested relations and reverse lookups are supported out of the box.

  1. Filter a log model by users related through a device

Models:

from django.db import models

class Member(models.Model):
    name = models.CharField(max_length=100)

class Device(models.Model):
    slug = models.CharField(max_length=100)
    members = models.ManyToManyField(Member, related_name='devices', blank=True)

class PingLog(models.Model):
    device = models.ForeignKey(Device, related_name='pings', on_delete=models.CASCADE)
    ip = models.CharField(max_length=64, blank=True, default='')

Admin:

from django.contrib import admin
from admin_auto_filters.filters import AutocompleteFilterFactory
from tests.testapp.models import Member, PingLog

@admin.register(PingLog)
class PingLogAdmin(admin.ModelAdmin):
    list_filter = [
        # Drill-down M2M: filter PingLog by Device.members
        AutocompleteFilterFactory('Member', 'device__members'),
    ]

@admin.register(Member)
class MemberAdmin(admin.ModelAdmin):
    search_fields = ['name']  # required for admin autocomplete
  1. Filter coupons by redeemers and by bug reports that rewarded them

Models:

from django.db import models

class Coupon(models.Model):
    code = models.CharField('Code', max_length=64, unique=True, blank=True, db_index=True)

class CouponUser(models.Model):
    coupon = models.ForeignKey(Coupon, related_name='users', on_delete=models.DO_NOTHING)
    user = models.ForeignKey('auth.User', related_name='coupons', null=True, on_delete=models.SET_NULL)
    redeemed_at = models.DateTimeField('Used', auto_now_add=True)

class BugReport(models.Model):
    title = models.CharField(max_length=1024)
    reward_coupon = models.ForeignKey(Coupon, on_delete=models.DO_NOTHING, null=True, blank=True)

Admin:

from django.contrib import admin
from admin_auto_filters.filters import AutocompleteFilterFactory
from tests.testapp.models import BugReport, Coupon

@admin.register(BugReport)
class BugReportAdmin(admin.ModelAdmin):
    search_fields = ['title']

@admin.register(Coupon)
class CouponAdmin(admin.ModelAdmin):
    list_filter = [
        # Through model to auth.User
        AutocompleteFilterFactory('User', 'users__user'),
        # Reverse FK using default related_query_name 'bugreport'
        AutocompleteFilterFactory('Bug Report', 'bugreport'),
    ]

Notes:

  • For each remote model you filter by (e.g., Member, BugReport), its ModelAdmin must define search_fields so the admin autocomplete endpoint works (Django 4.2+ requirement).
  • By default, AutocompleteFilterFactory points to the package’s auto-registered admin view, available at admin:admin-autocomplete. (otherwise it fails due to get_limit_choices_to being required on non-fk Fields). You can override this by specifying a custom view, as shown above.

Customizing widget text

You can customize the text displayed in the filter widget, to use something other than str(obj). This needs to be configured for both the dropdown endpoint and the widget itself.

In your views.py, override display_text:

from admin_auto_filters.views import AutocompleteJsonView


class CustomSearchView(AutocompleteJsonView):

    @staticmethod
    def display_text(obj):
        return obj.my_str_method()

    def get_queryset(self):
        """As above..."""
        ...

Then use either of two options to customize the text.

Option one is to specify the form_field in an AutocompleteFilter in your admin.py:

from django import forms
from django.contrib import admin
from django.shortcuts import reverse
from admin_auto_filters.filters import AutocompleteFilter


class FoodChoiceField(forms.ModelChoiceField):
    def label_from_instance(self, obj):
        return obj.my_str_method()


class ArtistFilter(AutocompleteFilter):
    title = 'Artist'
    field_name = 'artist'
    form_field = FoodChoiceField

    def get_autocomplete_url(self, request, model_admin):
        return reverse('admin:custom_search')


class AlbumAdmin(admin.ModelAdmin):
    list_filter = [ArtistFilter]

    def get_urls(self):
        """As above..."""

Option two is to use an AutocompleteFilterFactory in your admin.py add a label_by argument:

from django.contrib import admin
from admin_auto_filters.filters import AutocompleteFilterFactory


class AlbumAdmin(admin.ModelAdmin):
    list_filter = [
        AutocompleteFilterFactory('Artist', 'artist', 'admin:custom_search', True, label_by='my_str_method')
    ]

    def get_urls(self):
        """As above..."""

Contributing:

This project is a combined effort of a lot of selfless developers who try to make things easier. Your contribution is most welcome.

Please make a pull-request to the branch master, make sure your branch does not have any conflicts, and clearly mention the problems or improvements your PR is addressing.

Verify that tests and linting pass in the Pull Request checks.

License:

Django Admin Autocomplete Filter is an Open Source project licensed under the terms of the GNU GENERAL PUBLIC LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_admin_autocomplete_filters-0.8.0rc3.tar.gz (28.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file django_admin_autocomplete_filters-0.8.0rc3.tar.gz.

File metadata

File hashes

Hashes for django_admin_autocomplete_filters-0.8.0rc3.tar.gz
Algorithm Hash digest
SHA256 4a59a6d7d98bae4eb3f02d5a8f9e060d96bf5c70d4151389beafd79047409499
MD5 d9ff60a30c08236bd68b52b7cc127e7c
BLAKE2b-256 eca494d583e46e8ec13758e25fdc7185d787de5dff91e61286fff6dcf13634fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_admin_autocomplete_filters-0.8.0rc3.tar.gz:

Publisher: publish.yml on Barsoomx/django-admin-autocomplete-filters

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file django_admin_autocomplete_filters-0.8.0rc3-py3-none-any.whl.

File metadata

File hashes

Hashes for django_admin_autocomplete_filters-0.8.0rc3-py3-none-any.whl
Algorithm Hash digest
SHA256 4ca6606e21c3614ef122d3349bbff7c977b75c6fa09fd0b9241ea61faea381f5
MD5 04d342a9f7be6914cca21d4959fe7e26
BLAKE2b-256 cbc97efdc3829480459168d51604a7f103898c5ec55ac73fbccec9c0d029ee4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_admin_autocomplete_filters-0.8.0rc3-py3-none-any.whl:

Publisher: publish.yml on Barsoomx/django-admin-autocomplete-filters

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page