When a field is null in the database, Django inserts "(None)" to hold the place of the null when displaying a changelist. While descriptive, when there are lots of fields on a changelist, it makes everything very busy to look at, where as a blank field would be just as helpful but much less cluttered. So is there some way to change the text Django uses for representing null fields in the changelist? Doesn't matter if the solution is modeladmin-specific or admin wide.
Should also add that I am aware of the solution where you define custom fields and then output a blank string. That works, but in makes the column unsortable, and that is a priority before display, so it's not an option.