Try this:
In your forms.py
*class DocumentForm(forms.ModelForm):
class Meta:
model = Document*
*...........*
In your views.py
*def index(request):
if request.method == 'POST':
form = DocumentForm(request.POST, request.FILES)
if form.is_valid():
form.save()
return render_to_response('index.html', {'form': form})
else:
return render_to_response('index.html', {'form': form},
context_instance=RequestContext(request)
)*
On Sat, Apr 20, 2013 at 1:57 AM, Hélio Miranda <[email protected]> wrote:
> I still have the same problem.
> My question is whether I have the code, the image would be saved in?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at http://groups.google.com/group/django-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.