[Answered ]-How to get parent object in multi table inheritance in django

2👍

Since PlayerAchievement extends from OverallAchievment you can use its attributes:

def match_detail(self):
    self.match.<attr_here>
    ...
👤Gocht

Leave a comment