I have three models: Customer, Contract, Report
class Customer
pass
class Contract
customer = models.ForeignKey(Customer)
class Report
customer = models.ForeignKey(Customer)
contract = models.ForeignKey(Contract, null=True, blank=True, default=None)
In admin when edit Report I want to select Customer OR Contract, and if I select contract customer must be set to Contract's customer