I am newbie working with django, I am trying to create a form that permits the user to upload a file. The code I used is pretty much the same as from the djangoproject tutorial but it didn't work. my code is as follows:
for views:
from django import forms
from django.shortcuts import render_to_response
from django.http import HttpResponseRedirect
def upload_file(request):
if request.method == 'POST':
form = UploadFileForm(request.POST, request.FILES)
if form.is_valid():
handle_uploaded_file(request.FILES['file'])
return HttpResponseRedirect('/')
else:
form = UploadFileForm()
return render_to_response('upload_file.html', {'form': form})
def handle_uploaded_file(f):
destination = open('home/dutzy/Desktop/mysite/name.txt', 'wb+')
for chunk in f.chunks():
destination.write(chunk)
destination.close()
models:
from django.db import models
from django import forms
class UploadFileForm(forms.Form):
title = forms.CharField(max_length=50)
file = forms.FileField()
and the template:upload_file.html
<form enctype="multipart/form-data" method="post" action="/upload_file/">
<table>
<tr><td>
<b> {{ form.file.label_tag }}</b> {{ form.file}}
</td></tr>
<tr><td>
<input type="hidden" value="title" name="title" id="title" />
<input type="submit" value="Save" id="Save"/>
</td></tr>
</table>
</form>
i am testing my code on the django development server. the error is:global name 'UploadFileForm' is not defined, altough i suspect there are also other problems. i have configured the urls.py as: (r'^upload/$', 'mysite.upload.views.upload_file')
Could someone please take a look at my code and point me in the right direction?
Thank you