I belive that the answer to my problem is simple, but I can\'t find it anywhere. Here is my predicament. I have two models: Member and MemberDetail, which are in oneToOne relati
You should just be able to do 'member_detail__email', etc. in list_display
'member_detail__email'
list_display
Since it's a 1-1 you should have a backref, and associated fields are referenced using two underscores.