|
|
@ -37,25 +37,6 @@ def deny(request, choice, pk): |
|
|
|
return HttpResponse(f'ERROR! UNKNWON CHOICE TYPE {choice}!') |
|
|
|
|
|
|
|
|
|
|
|
# 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.") |
|
|
|
|
|
|
|