I have a model that contains 3 class (Person, Business, Renewal) Relation: A Person can have multiple Business and each business can have multiple Renewal. Problem: For the admin.py I would use inline to connect Person(modelAdmin) with Business(StackedInline). Now my problem is how to connect renewal with business.
basically the there is a 2nd layer of relationship.