In this case, each feature has one Epic (models.Model)
epic = models.ForeignKey(Epic, on_delete=models.CASCADE, default='')
In the admin drop-down (and only there) I would like to show each item as:
epic.name - feature.name
Because some of my features have a similar name but different epics. I can't change the __ str __ function of the Feature model or it will affect the whole app.
How can I achieve that?