Posts by adevontheroad • 29 points
1 post
- 
		1 votes1 answer144 viewsQ: How to do this kind of relationship in Django?I have the models "Subscriber": class Assinante(models.Model): name = models.CharField("Nome", max_length=32, null=False, blank=True) phone = models.CharField("Telefone", max_length=11, null=True,…