magdot
Results
1
issues of
magdot
I've following models ```python class Address(models.Model): city = models.CharField(max_length=100) district = models.CharField(max_length=100) zip_np = models.CharField(max_length=20) class Info(models.Model): name = models.CharField(max_length=50) phone = models.CharField(max_length=12) addresses = models.ArrayReferenceField(to=Address) class Meta: abstract =...