Re: bookmarks app with images

2009-02-17 Thread Tonu Mikk
Thanks Louis, It has taken me a while to get my head wrapped around this. Your suggestions helped and I am now moving along. Tonu Louis Sayers wrote: > Firstly, make sure that you have the enctype="multipart/form-data" > attribute on your form in your template. > > You can create an object o

Re: bookmarks app with images

2009-02-12 Thread Louis Sayers
Firstly, make sure that you have the enctype="multipart/form-data" attribute on your form in your template. You can create an object of your form by writing: formObject = BookmarkSaveForm(request.POST, request.FILES) test if it's valid: if formObject.is_valid(): Looking at your Photo model, yo