Re: MultiFileInput widget

2010-10-19 Thread alecx
Okay, I am answering myself. Maybe this info helps someone else. I created a fileupload model with foreignkey relation. # models.py class Item(models.Model): serialnr = models.CharField(max_length=5, blank=True) class Fileupload(models.Model): item = models.ForeignKey(

MultiFileInput widget

2010-10-16 Thread alecx
Hi, I have only a few weeks django/web experience and currently struggling with a specific problem. I dont know how to solve it. and therefore I ask you experts. I have an Itemform (ModelForm) with a fileupload field. But I want to upload multiple files with multifileinput (djangosnippet:583). Can