I would like to display the function name in search fields in Django Admin interface but when i do it
The models.py:
class Adult(models.Model):
user = models.OneToOneField(User)
firstname = models.CharField(max_length=100,
blank=True)
lastname = models.CharField(max_length=100,
blank=True)
def __unicode__(self):
return self.user.username
def Parent_Name(self):
try:
return '%s %s' % (adult.firstname,adult.lastname)
except Exception:
return ''
getParentName.shot_description = 'adult'
Admin.py:
class AdultAdmin(admin.ModelAdmin):
list_display = ('Parent_Name', 'Student_Name',)
search_fields = ['Parent_Name',]
admin.site.register(Adult, AdultAdmin)
Error: Cannot resolve keyword 'Parent_Name' into field.
What should be the correct way of writing this so that the function name can be used for search_fields?

search_fieldsis supposed to be a list of field names indicating which fields in your model are to be searched when the admin search bar is used. It's got nothing to do with displaying labels etc. – Timmy O'Mahony Aug 13 '12 at 8:33