I'm trying to create a product search engine my model is this
class Producto(models.Model):
nombre = models.CharField(max_length=50, null=False, blank=False)
categoria = models.ForeignKey(Categoria, null=False, blank=False, on_delete=models.CA...
asked by
06.05.2018 / 07:51