2020-09-21 14:27:16 +02:00
|
|
|
from django.shortcuts import render
|
2020-09-29 09:53:29 +02:00
|
|
|
from django.forms import modelformset_factory
|
2020-09-29 11:08:16 +02:00
|
|
|
from django.http import HttpResponse
|
2020-10-05 13:35:28 +02:00
|
|
|
from formtools.wizard.views import CookieWizardView
|
2020-10-07 13:36:35 +02:00
|
|
|
from django.core.mail import send_mail
|
2020-09-22 12:21:05 +02:00
|
|
|
|
2020-10-05 15:10:23 +02:00
|
|
|
from .forms import ProjectForm, VolunteerForm, LibraryForm, IFGForm
|
2020-10-01 12:08:02 +02:00
|
|
|
from .models import Project
|
2020-09-22 12:21:05 +02:00
|
|
|
|
2020-10-06 12:42:32 +02:00
|
|
|
def project(request):
|
2020-09-29 09:53:29 +02:00
|
|
|
# return HttpResponse("Hello, world. You're at the input form")
|
2020-09-29 11:29:15 +02:00
|
|
|
# ProjectFormSet = modelformset_factory(Project, fields='__all__')
|
2020-09-29 09:53:29 +02:00
|
|
|
if request.method == 'POST':
|
2020-09-29 11:47:29 +02:00
|
|
|
print('POST detected')
|
2020-09-29 11:29:15 +02:00
|
|
|
form = ProjectForm(request.POST, request.FILES)
|
|
|
|
if form.is_valid():
|
2020-09-29 11:47:29 +02:00
|
|
|
print('form valid')
|
2020-09-29 11:29:15 +02:00
|
|
|
form.save()
|
2020-09-29 11:47:29 +02:00
|
|
|
|
2020-09-29 09:53:29 +02:00
|
|
|
# do something.
|
2020-09-29 11:47:29 +02:00
|
|
|
else:
|
|
|
|
print("form not valid")
|
2020-09-29 09:53:29 +02:00
|
|
|
else:
|
2020-09-29 11:47:29 +02:00
|
|
|
print
|
2020-09-29 11:29:15 +02:00
|
|
|
form = ProjectForm()
|
|
|
|
return render(request, 'input/project.html', {'form': form})
|
2020-09-29 11:08:16 +02:00
|
|
|
|
2020-10-06 12:42:32 +02:00
|
|
|
def accreditation(request):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def travel(request):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def certificate(request):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2020-09-29 11:08:16 +02:00
|
|
|
def done(request):
|
|
|
|
return HttpResponse("Your data is save now.")
|
2020-09-30 14:26:08 +02:00
|
|
|
|
|
|
|
def extern(request):
|
|
|
|
return HttpResponse("The world out there is large and dangerous")
|
2020-10-01 12:08:02 +02:00
|
|
|
|
2020-10-05 13:35:28 +02:00
|
|
|
class ExternView(CookieWizardView):
|
2020-10-01 14:08:11 +02:00
|
|
|
template_name = "input/extern.html"
|
2020-10-01 12:08:02 +02:00
|
|
|
form_list = [VolunteerForm, LibraryForm]
|
2020-10-05 13:35:28 +02:00
|
|
|
|
2020-10-05 15:53:00 +02:00
|
|
|
# def process_step(self, form):
|
|
|
|
# if form.cleaned_data.get('choice') == 'IFG':
|
|
|
|
# print ('IFG detected!')
|
|
|
|
# self.form_list = [VolunteerForm, IFGForm]
|
|
|
|
# print('leaving process_step()')
|
|
|
|
# return self.get_form_step_data(form)
|
|
|
|
|
|
|
|
def get_form(self, step=None, data=None, files=None):
|
2020-10-06 09:50:18 +02:00
|
|
|
if step is None:
|
|
|
|
step = self.steps.current
|
|
|
|
print ("get_form() step " + step)
|
|
|
|
|
2020-10-05 15:53:00 +02:00
|
|
|
if step == '1':
|
2020-10-06 09:50:18 +02:00
|
|
|
prev_data = self.get_cleaned_data_for_step('0')
|
|
|
|
if prev_data.get('choice') == 'IFG':
|
2020-10-05 15:53:00 +02:00
|
|
|
print ('IFG detected!')
|
2020-10-06 09:50:18 +02:00
|
|
|
form = IFGForm(data)
|
|
|
|
else:
|
|
|
|
form = LibraryForm(data)
|
|
|
|
else:
|
|
|
|
form = super().get_form(step, data, files)
|
2020-10-05 15:53:00 +02:00
|
|
|
return form
|
2020-10-05 15:10:23 +02:00
|
|
|
|
2020-10-01 12:08:02 +02:00
|
|
|
def done(self, form_list, **kwargs):
|
2020-10-05 13:35:28 +02:00
|
|
|
print('ExternView.done() reached')
|
|
|
|
# gather data from all forms
|
|
|
|
data = {}
|
|
|
|
for form in form_list:
|
|
|
|
data = {**data, **form.cleaned_data}
|
|
|
|
print(data)
|
2020-10-05 15:10:23 +02:00
|
|
|
|
2020-10-05 13:35:28 +02:00
|
|
|
# write data to database
|
|
|
|
form = form.save(commit=False)
|
|
|
|
# this is ugly code. how can we copy this without explicit writing?
|
2020-10-07 13:15:00 +02:00
|
|
|
# i found no way to access the ModelForm.Meta.exclude-tupel
|
2020-10-05 13:35:28 +02:00
|
|
|
form.realname = data['realname']
|
|
|
|
form.username = data['username']
|
|
|
|
form.email = data['email']
|
|
|
|
form.save()
|
|
|
|
|
2020-10-07 13:15:00 +02:00
|
|
|
# we need to send the following mails here:
|
|
|
|
# - mail with entered data to the Volunteer
|
2020-10-07 13:36:35 +02:00
|
|
|
send_mail(
|
|
|
|
'form filled',
|
|
|
|
'you are such a great form filler!',
|
|
|
|
'if-test@wikimedia.de',
|
|
|
|
['benni.baermann@wikimedia.de'],
|
|
|
|
fail_silently=False,
|
|
|
|
)
|
|
|
|
# - mail to IF with link to accept/decline
|
2020-10-07 13:15:00 +02:00
|
|
|
|
2020-10-01 14:45:04 +02:00
|
|
|
return done(self.request)
|
|
|
|
# return render(self.request, 'saved', {
|
|
|
|
# 'form_data': [form.cleaned_data for form in form_list],
|
|
|
|
# })
|