file, I believe
> this could be fairly common.
>
> any thoughts? please update on the path you took.
>
> best luck
> avraham
>
>
> On Tue, Dec 4, 2012 at 5:32 AM, MNG1138 >wrote:
>
>> Say I've got a model like this:
>>
>> class Product(model
Say I've got a model like this:
class Product(models.Model):
name = models.CharField(max_length=200)
class ProductItem(models.Model):
product = models.ForeignKey(Product)
serialnumber = models.charField()
sold = models.BooleanField(default=False)
ProductItem represents physical p
2 matches
Mail list logo