I have the following models :
class Persona(models.Model):
cedula = models.CharField(max_length=12, unique=True, null=False, blank=False)
rol = models.ManyToManyField('Rol')
cuenta = models.OneToOneField(settings.AUTH_USER_MODEL,...
asked by
08.09.2017 / 19:34