Browse Source

changing saved value in database selfbuy_give_data to false when selfbuy true also in internview done()

master
alpcentaur 1 year ago
parent
commit
e9de3fcb99
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      input/views.py

+ 2
- 0
input/views.py View File

@ -110,6 +110,8 @@ class InternView(LoginRequiredMixin, CookieWizardView):
data = {}
for form in form_list:
data = {**data, **form.cleaned_data}
if data['selfbuy'] == 'TRUE':
data['selfbuy_give_data'] = 'False'
print(data)
# write data to database

Loading…
Cancel
Save