I have a Person model that has a foreign key relationship to Book. Book has a number of fields, but I'm most concerned about "author" (a standard CharField).

With that being said, in my PersonAdmin model, I'd like to display "book.author" using "list_display". I've tried all of the obvious methods for doing so (see below), but nothing seems to work. Any suggestions?

class PersonAdmin(admin.ModelAdmin):
  list_display = ['book.author',]
link|improve this question

feedback

6 Answers

up vote 7 down vote accepted

According to the documentation, you can only display the __unicode__ representation of a ForeignKey:

http://docs.djangoproject.com/en/dev/ref/contrib/admin/#list-display

Seems odd that it doesn't support the 'book__author' style format which is used everywhere else in the DB API.

Turns out there's a ticket open for this feature, which is marked as Accepted.

link|improve this answer
2  
book__authorworks indeed. (Django 1.2) – Mermoz Nov 1 '10 at 16:45
feedback

As another option, you can do look ups like:

class UserAdmin(admin.ModelAdmin):
    list_display = (..., 'get_reviews')

    def get_reviews(self, obj):
        return '%s'%(obj.book.author)
    get_reviews.short_description = 'Author'        
link|improve this answer
1  
Should 'get_author' be 'get_reviews'? – Huuuze Oct 4 '08 at 20:50
1  
whoops, nice catch! – jobscry Oct 5 '08 at 10:47
feedback

Like the rest, I went with callables too. But they have one downside: by default, you can't order on them. Fortunately, there is a solution for that:

def author(self):
    return self.book.author
author.admin_order_field  = 'book__author'
link|improve this answer
feedback

You can show whatever you want in list display by using a callable. It would look like this:


def book_author(object):
  return object.book.author

class PersonAdmin(admin.ModelAdmin):
  list_display = [book_author,]
link|improve this answer
This one is nice for situations, where a lot of different models often call to same attribute; is it supported in 1.3+? – kagali-san Sep 24 '11 at 17:26
feedback

This one's already accepted, but if there are any other dummies out there (like me) that didn't immediately get it from the accepted answer, here's a bit more detail.

The model class referenced by the ForeignKey needs to have a unicode method within it, like so:

class Category(models.Model):
name 		= models.CharField(max_length=50)

def __unicode__(self):
	return self.name

That made the difference for me, and should apply to the above scenario. This works on Django 1.0.2.

link|improve this answer
feedback

AlexRobbins' answer worked for me, except that the first two lines need to be in the model (perhaps this was assumed?), and should reference self:

def book_author(self):
  return self.book.author

Then the admin part works nicely.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.