From: Aleksander Ɓukasz Date: Thu, 7 Nov 2013 15:18:32 +0000 (+0100) Subject: Keep only the latest uploaded file for question of type "file_upload" X-Git-Url: https://git.mdrn.pl/edumed.git/commitdiff_plain/72c2bc927df348a3472a627f27af89f4f29c279d Keep only the latest uploaded file for question of type "file_upload" --- diff --git a/wtem/forms.py b/wtem/forms.py index 9555c72..c0da211 100644 --- a/wtem/forms.py +++ b/wtem/forms.py @@ -26,7 +26,12 @@ class WTEMForm(forms.ModelForm): def save(self): submission = super(WTEMForm, self).save() - for file in self.files.values(): - attachment = Attachment(file = file, submission = submission) + for name, file in self.files.items(): + exercise_id = int(name.split('_')[-1]) + try: + attachment = Attachment.objects.get(submission = submission, exercise_id = exercise_id) + except Attachment.DoesNotExist: + attachment = Attachment(fsubmission = submission, exercise_id = exercise_id) + attachment.file = file attachment.save()