[Answer]-Django Admin foreign key

1👍

You can define a function in the model inside class Package. Since you need to know the status you can find status of the recent follow ups using

def get_status_name(self):
    a = self.followup_set.latest('follow_up_date')
    return a.status.status_name

Leave a comment