Re: Multiple Image Field in a model

2020-03-31 Thread Yash Chandra verma
This is how exactly you could solve it. Multiple FIle Upload On Monday, September 26, 2011 at 7:32:51 PM UTC+5:30, NavaTux wrote: > > Hi all, > >I have a filed(ImageField) in my model.Also I want to have > multiple ImageFields.How to have m

Re: Multiple Image Field in a model

2011-09-27 Thread Tom Evans
On Tue, Sep 27, 2011 at 2:49 PM, NavaTux wrote: > Thanks I have done the same way before seeing this valuable one. > > Let me ask you one more? ..Need to do some extra functioalities like > the effects of Uploading file in gmail like that in django? any > suggestions? > Google is full of tips and

Re: Multiple Image Field in a model

2011-09-27 Thread NavaTux
Thanks I have done the same way before seeing this valuable one. Let me ask you one more? ..Need to do some extra functioalities like the effects of Uploading file in gmail like that in django? any suggestions? On Sep 26, 7:14 pm, Philip Mountifield wrote: > I would put the images in a seperate

Re: Multiple Image Field in a model

2011-09-26 Thread Philip Mountifield
I would put the images in a seperate model such as "ReportImage" and make a foreign key to "Report", and finally I'd use the "inlines" admin feature for ReportImages to display them on the same page as the report. Phil On 26/09/2011 15:02, NavaTux wrote: Hi all, I have a filed(ImageF

Multiple Image Field in a model

2011-09-26 Thread NavaTux
Hi all, I have a filed(ImageField) in my model.Also I want to have multiple ImageFields.How to have more than one ImageFields only in django model.Is there any need to derive that ImageField as a seperate new model which holds as a foreign key of another one? This is my model: class Repor