Re: full_validation fails upon validating an inherited model

2012-06-18 Thread Carsten Reimer
in my previous post I named the method in question full_validation. This is obviously wrong. It must be full_clean. Sorry for that. Carsten Reimer schrieb: Hallo, I have a problem running Django's full_validation-method upon an instance of an inherited model. Please consider the following two

full_validation fails upon validating an inherited model

2012-06-18 Thread Carsten Reimer
Hallo, I have a problem running Django's full_validation-method upon an instance of an inherited model. Please consider the following two models: class ParentModel(models.Model): parent_model_id = models.IntegerField(primary_key=True) parent_model_attr = models.CharField(max_length=20