Move to src dir.
[edumed.git] / wtem / forms.py
diff --git a/wtem/forms.py b/wtem/forms.py
deleted file mode 100644 (file)
index 9555c72..0000000
+++ /dev/null
@@ -1,32 +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 file in self.files.values():
-            attachment = Attachment(file = file, submission = submission)
-            attachment.save()
-