Opened 6 years ago

Closed 6 years ago

#28986 closed Bug (fixed)

Admin should not format booleans as T,rue/Fa,lse even if boolean=False

Reported by: Jonas Haag Owned by: nobody
Component: contrib.admin Version: 2.0
Severity: Normal Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Reproduce: Have a property that returns True/False in a model and add it to list_display without having set .boolean = True on the property. If USE_THOUSAND_SEPARATOR is true, admin formats the booleans to T,rue/Fa,lse.

Applies to 1.11, 2.0, master (possible earlier versions as well).

Change History (3)

comment:2 by Tim Graham, 6 years ago

Triage Stage: UnreviewedReady for checkin
Type: UncategorizedBug

comment:3 by Tim Graham <timograham@…>, 6 years ago

Resolution: fixed
Status: newclosed

In 602481d0:

Fixed #28986 -- Prevented boolean values in admin list display from being formatted with thousand separators.

Note: See TracTickets for help on using tickets.
Back to Top