In Django 1.1 admin, when I go to add or change an object, my objects are displayed as:
Select host to change * Add host Host object Host object
It might also be worth mentioning that, if you are using an auto-incrementing primary key for your models, you will need to coerce it into a string, eg:
def __unicode__(self): return str(self.pk)