Re: Bulk db insert with a file through admin form

2013-01-29 Thread MNG1138
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

Bulk db insert with a file through admin form

2012-12-03 Thread MNG1138
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