Mi modelo es bastante simple, corresponde a una tabla que almacena zapatos con datos relevantes al producto:
MODELS.PY
Código:
He estado googleando toda la tarde y no encuentro una manera de integrarlo, he visto algunos códigos pero mucho más grandes que no logro entender nada, es por eso que recurro a ustedes.from django.db import models class Zapato( models.Model ): TECNOLOGIAS = ( ) SUBMARCAS = ( ) COLORES = ( ) nombre = models.CharField( max_length = 40, blank = False ) articulo = models.CharField( max_length = 70, primary_key = True ) material = models.CharField( max_length = 80, blank = True ) planta = models.CharField( max_length = 50, blank = True ) numeracion = models.CharField( max_length = 30, blank = True ) recomendaciones = models.TextField( max_length = 200, blank = True ) nuevo = models.BooleanField( default = False ) color = forms.MultipleChoiceField( choices = COLORES ) # MULTPLES CHECKBOXES tecnologia = models.CharField( choices = TECNOLOGIAS, max_length = 20 ) submarca = models.CharField( choices = SUBMARCAS, max_length = 20 ) ingreso = models.DateTimeField( auto_now_add = True )
Espero me puedan ayudar con este problema.
Saludos.