upload/views.py
author Shantanu <shantanu@fossee.in>
Thu, 03 Sep 2009 17:31:12 +0530
changeset 17 08a47999f316
parent 15 2dbb5e797989
child 18 07408d1ced76
permissions -rw-r--r--
Added submissions page.

#can add features like: supporting files with specified extensions, making edit box of content better etc.
from django.http import HttpResponse
from django.template import Context, Template
from django.shortcuts import render_to_response
from form import FileForm, Uploaded_fileForm
from forms import ParticipantForm
import tarfile

#function to read the upoaded file and store it
def handle_uploaded_file(f):
    destination = open(f.name, 'wb+')
    for chunk in f.chunks():
        destination.write(chunk)
    destination.close()

#view to handle uploaded file, showing content of file, and option of uploading a file
def upload_file(request, template_name='index.html'):
    if request.method == 'POST':
        form = ParticipantForm(request.POST, request.FILES)		
        if form.is_valid():
            #handle_uploaded_file(request.FILES['file'])
            form.save()	   
            return render_to_response(template_name, {'form': form, 'value': False,})
        else:
            return render_to_response(template_name, {'form': form, 'value': True,})
    c = Context()
    return render_to_response(template_name,
			  {'form': ParticipantForm(), 'value': True,})
			  
def submission(request, template_name='submission.html'):
    '''
        view to return the submitted videos
    '''
    pass