I have contact model
class Contact(models.Model):
company = models.CharField(max_length=200, blank=True)
vatkey = models.CharField(max_length=200, blank=True)
Can i set reference that : when company name is not empty then vatkey is required ?
regards