X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/e0ca24b203011b28d4fe07fb3c1c76f00fdea959..d8e360fe85b5f15df034d87f123f781f071d49a1:/wtem/forms.py diff --git a/wtem/forms.py b/wtem/forms.py index 61e1d7c..504fd26 100644 --- a/wtem/forms.py +++ b/wtem/forms.py @@ -1,9 +1,10 @@ import os +import re from django import forms from django.utils import simplejson -from .models import Submission, Attachment +from .models import Submission, Attachment, exercises class WTEMForm(forms.ModelForm): @@ -13,20 +14,21 @@ class WTEMForm(forms.ModelForm): def __init__(self, *args, **kwargs): super(WTEMForm, self).__init__(*args, **kwargs) - - ## @@ move this one level up - f = file(os.path.dirname(__file__) + '/fixtures/exercises.json') - exercises = simplejson.loads(f.read()) - f.close() - for exercise in exercises: if exercise['type'] != 'file_upload': continue - self.fields['attachment_' + exercise['name']] = forms.FileField(required = False) - - def save(self): - submission = super(WTEMForm, self).save() - for file in self.files.values(): - attachment = Attachment(file = file, submission = submission) + self.fields['attachment_for_' + str(exercise['id'])] = forms.FileField(required = False) + + def save(self, commit=True): + submission = super(WTEMForm, self).save(commit=commit) + for name, file in self.files.items(): + m = re.match(r'attachment_for_(\d+)(?:__(.*))?', name) + exercise_id = int(m.group(1)) + tag = m.group(2) or None + try: + attachment = Attachment.objects.get(submission = submission, exercise_id = exercise_id, tag=tag) + except Attachment.DoesNotExist: + attachment = Attachment(submission = submission, exercise_id = exercise_id, tag=tag) + attachment.file = file attachment.save()