I'm listing some FKs (or rather, objects that have the object as FK) in a tabular inline.
The "one" model is Foo. The model that has Foo as FK is Bar, and Bar is shown as an inline in Foo. Bar has a field Baz. All of this shows by default, but I would like to show a separate (ideally read-only) field with an attribute of Baz (let's call it Happy).
So the inline should show Bar.fieldone, Bar.fieldtwo, Bar.baz (fieldthree), and Bar.baz.happy.
I tried putting baz__happy in the fields for the inline, but that didn't compile.
It's not a feasible solution to simply put Happy in the string representation of Baz.