﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
37332	Admin `list_display` does not show icon for generated boolean fields	Marijke Luttekes	Yassin Bahri	"Per the [https://docs.djangoproject.com/en/6.1/releases/6.1/ Django 6.1 release notes]:

> `list_display` now uses boolean icons for boolean fields on related models.

This does not work for instances of `GeneratedField` with `output_field=models.BooleanField()`, like so:

{{{
from django.db import models

is_done = models.GeneratedField(
    # Redacted for brevity
    output_field=models.BooleanField(),
    db_persist=True,
)
}}}

Both fields in admin list display and filter (`list_display` and `list_filter`, respectively) show the output of these fields as `True` or `False`.

NB. The code I used for this is currently on a feature branch that's actively being pushed over: https://github.com/MHLut/django-local-test/tree/feature/todo."	Bug	assigned	contrib.admin	6.1	Normal		admin		Accepted	1	0	0	0	0	1
