I've got a form template, to which I'm passing the form info as well as the object itself. I can use {{ object.get_FOO_display }}
no problem for choice fields when the choice field is a part of the object itself, but I'm looking for an easy way to do the same for the foreign fields that are in the form.
I'm building this into a class-based view, so ideally any suggestions could be coded independent of references to specific fields.
Thanks!