def formthing(request):
	f = parkingApplication()
	html="<html><head><title>Hey this is mohan</title></head><body>%s</body></html>" %(f)
	return HttpResponse(html)
def parkingApplicationForm(request):
	form = parkingApplication()
	return render_to_response('registration.html',{'form':form})