Django filefield

2011-05-08 Thread Pulkit Mehrotra
I want to create a system by which i can upload files to my database .This database will be a set of question papers .These question papers can be downloaded by students for their own use and evaluation.How to create it .What is the use of django filefield.Please provide any links for it . than

Re: Django filefield

2011-05-08 Thread pankaj sharma
http://docs.djangoproject.com/en/dev/ref/models/fields/ may be this can help u. Regards: Pankaj On May 8, 1:32 pm, Pulkit Mehrotra wrote: > I want to create a system by which i can upload files to my database .This > database will be a set of question papers .These question papers can be > down

Re: Django filefield

2011-05-09 Thread nederhoed
Hi Pulkit, This could be of help too: http://docs.djangoproject.com/en/dev/ref/forms/api/#binding-uploaded-files-to-a-form Do not forget to add the multipart to your form element: Store the file on your filesystem, store the path to the file in your database. Cheers, RR On May 8, 10:32 pm, P