From 428fdfb2020830094e02f059663e36aae0399030 Mon Sep 17 00:00:00 2001 From: Darko Poljak Date: Mon, 10 Mar 2014 08:04:22 +0100 Subject: [PATCH] add question list filter by survey --- anonsurvey/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anonsurvey/admin.py b/anonsurvey/admin.py index a90160b..0de372d 100644 --- a/anonsurvey/admin.py +++ b/anonsurvey/admin.py @@ -54,7 +54,7 @@ class QuestionAdmin(admin.ModelAdmin): 'offeredanswer__answer_type', 'offeredanswer__text', 'offeredanswer__sufix',) - list_filter = ('question_type', 'requires_answer', ) + list_filter = ('question_type', 'requires_answer', 'survey' ) class QuestionGroupAdmin(admin.ModelAdmin):