diff --git a/input/templates/input/project.html b/input/templates/input/project.html deleted file mode 100644 index f0d36a9..0000000 --- a/input/templates/input/project.html +++ /dev/null @@ -1,17 +0,0 @@ -{% load static %} - - - - - - -{{ form.media }} - - - - -
- {% csrf_token %} - {{ form.as_p }} - -
diff --git a/input/views.py b/input/views.py index d34ecd3..fbaf0f7 100644 --- a/input/views.py +++ b/input/views.py @@ -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.")