From 019c1d2c61c2bf15aa58bcc20187600af7b962cd Mon Sep 17 00:00:00 2001 From: tomwalker Date: Wed, 8 Oct 2014 18:14:17 +0100 Subject: [PATCH] Tested the app with Django==1.7 and only change was to add an `exlude` to the meta of an admin form. The extent of the test was: * a fresh install in a virtualenv with Django==1.7 and an SQLite DB * all the tests passed * made a couple of quiz models with different configurations, filled them with different question types, completed them and marked the essay questions --- quiz/admin.py | 1 + 1 file changed, 1 insertion(+) diff --git a/quiz/admin.py b/quiz/admin.py index 9478998..5cfbb71 100644 --- a/quiz/admin.py +++ b/quiz/admin.py @@ -22,6 +22,7 @@ class QuizAdminForm(forms.ModelForm): class Meta: model = Quiz + exclude = [] questions = forms.ModelMultipleChoiceField( queryset=Question.objects.all().select_subclasses(), -- 2.39.5