|
|
@ -37,40 +37,28 @@ def deny(request, choice, pk): |
|
|
|
return HttpResponse('ERROR! UNKNWON CHOICE TYPE!') |
|
|
|
|
|
|
|
|
|
|
|
def project(request): |
|
|
|
# return HttpResponse("Hello, world. You're at the input form") |
|
|
|
# ProjectFormSet = modelformset_factory(Project, fields='__all__') |
|
|
|
if request.method == 'POST': |
|
|
|
print('POST detected') |
|
|
|
form = ProjectForm(request.POST, request.FILES) |
|
|
|
if form.is_valid(): |
|
|
|
print('form valid') |
|
|
|
form.save() |
|
|
|
|
|
|
|
# do something. |
|
|
|
else: |
|
|
|
print("form not valid") |
|
|
|
else: |
|
|
|
print |
|
|
|
form = ProjectForm() |
|
|
|
return render(request, 'input/project.html', {'form': form}) |
|
|
|
|
|
|
|
def accreditation(request): |
|
|
|
pass |
|
|
|
|
|
|
|
def travel(request): |
|
|
|
pass |
|
|
|
|
|
|
|
def certificate(request): |
|
|
|
pass |
|
|
|
# def project(request): |
|
|
|
# # return HttpResponse("Hello, world. You're at the input form") |
|
|
|
# # ProjectFormSet = modelformset_factory(Project, fields='__all__') |
|
|
|
# if request.method == 'POST': |
|
|
|
# print('POST detected') |
|
|
|
# form = ProjectForm(request.POST, request.FILES) |
|
|
|
# if form.is_valid(): |
|
|
|
# print('form valid') |
|
|
|
# form.save() |
|
|
|
# |
|
|
|
# # do something. |
|
|
|
# else: |
|
|
|
# print("form not valid") |
|
|
|
# else: |
|
|
|
# print |
|
|
|
# form = ProjectForm() |
|
|
|
# return render(request, 'input/project.html', {'form': form}) |
|
|
|
|
|
|
|
|
|
|
|
def done(request): |
|
|
|
return HttpResponse("Your data is save now.") |
|
|
|
|
|
|
|
def extern(request): |
|
|
|
return HttpResponse("The world out there is large and dangerous") |
|
|
|
|
|
|
|
class InternView(CookieWizardView): |
|
|
|
'''This View is for the WMDE-employees only''' |
|
|
|
|
|
|
|