To show the field name instead of Model object, define the below function in your model class

def __unicode__(self):
        return  u'%s' % (self.name)

where 'name' is one of the class attribute