I have the following models. How do I get access to the unicode of the inheriting tables (Team and Athete) from the Entity table? I\'m trying to display a l
If I undestand correctly, you are simply asking how to call the __unicode__ method of a given object.
__unicode__
Use unicode(instance) and depending on the type of entity, the appropriate implementation will be called polymorphically.
unicode(instance)