Noland Pham
Results
1
comments of
Noland Pham
I think I pass the "Abstract models cannot be instantiated" error. Just create a instance class ```python # models.py class ContactAbstract(models.Model): key = models.CharField(max_length=100) class Meta: abstract = True class...