django.contrib.admin.filters SimpleListFilter Example Code

SimpleListFilter is a class within the Django project which can be subclasses to customize the Django admin's lookups and querying interface.

Understanding the following concepts are useful when coding projects that use Django's SimpleListFilter class:

You can also view the complete all topics page for even more resources.

Example 1 from AuditLog

Auditlog (project documentation) is a Django app that logs changes to Python objects, similar to the Django admin's logs but with more details and output formats. Auditlog's source code is provided as open source under the MIT license.

django-auditlog / src / auditlog / filters.py