As displayed in the image it displays \"Lecture Object\" instead of the Lecture\'s title. As I\'ve understood it, unicode should take care of this, but it d
To display a custom string as your Model's object representation, you should:
In Python 2.x
def __unicode__(self): return self.some_attr # What you want to show
In Python 3.x
def __str__(self): return self.some_attr # What you want to show