diff options
Diffstat (limited to 'testapp/exam/forms.py')
-rw-r--r-- | testapp/exam/forms.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/testapp/exam/forms.py b/testapp/exam/forms.py index b7625be..1c61816 100644 --- a/testapp/exam/forms.py +++ b/testapp/exam/forms.py @@ -240,5 +240,18 @@ class RandomQuestionForm(forms.Form): (choices=(('select', 'Select Marks'),))) shuffle_questions = forms.BooleanField(required=False) + +class QuestionFilterForm(forms.Form): + questions = Question.objects.all() + points_list = questions.values_list('points', flat=True).distinct() + points_options = [(i, i) for i in points_list] + + language = forms.CharField(max_length=8, widget=forms.Select\ + (choices=languages)) + question_type = forms.CharField(max_length=8, widget=forms.Select\ + (choices=question_types)) + marks = forms.FloatField(widget=forms.Select(choices=points_options)) + + TestCaseFormSet = inlineformset_factory(Question, TestCase,\ can_order=False, can_delete=False, extra=1) |