From: tomwalker Date: Wed, 8 Oct 2014 17:14:17 +0000 (+0100) Subject: Tested the app with Django==1.7 and only change was to add an `exlude` to the meta... X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=019c1d2c61c2bf15aa58bcc20187600af7b962cd;p=django_quiz.git 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 --- 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(),