X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/72c2bc927df348a3472a627f27af89f4f29c279d..d555d988764995ea1f9f5ece46f453a66f09b334:/wtem/forms.py?ds=inline diff --git a/wtem/forms.py b/wtem/forms.py deleted file mode 100644 index c0da211..0000000 --- a/wtem/forms.py +++ /dev/null @@ -1,37 +0,0 @@ -import os - -from django import forms -from django.utils import simplejson - -from .models import Submission, Attachment - - -class WTEMForm(forms.ModelForm): - class Meta: - model = Submission - fields = ('answers',) - - 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_for_' + str(exercise['id'])] = forms.FileField(required = False) - - def save(self): - submission = super(WTEMForm, self).save() - 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() -