I am aware of the polymorphic_list field in the PolymorphicParentModelAdmin, but I am using PolymorphicChildModelAdmin, and I am wondering if it's possible to display the relationship field to it's child class.
e.g
class Vote(Model):
# item can be "Content", "User" which extends "Trackable"
item = Trackable(..)
When I display the admin list, the item is always displayed as "Trackable"