here is the models page
In this picture, only the title shows up on here, I used:
def __unicode__(self): return self.title;
I found OBu's answer here to be very useful for me. He mentions:
The drawback is, the fields are in sorted order.
A small adjustment to his method solves this problem as well:
list_display = [f.name for f in Book._meta.fields]
Worked for me.