Use scrolling multiple choice widget in more places

This commit is contained in:
Raphael Michel
2017-10-17 11:40:17 +02:00
parent a2c5ce5ebc
commit 53bb2b2945
4 changed files with 13 additions and 5 deletions

View File

@@ -25,7 +25,9 @@ class AnswerFilesExporter(BaseExporter):
forms.ModelMultipleChoiceField(
queryset=self.event.questions.filter(type='F'),
label=_('Questions'),
widget=forms.CheckboxSelectMultiple,
widget=forms.CheckboxSelectMultiple(
attrs={'class': 'scrolling-multiple-choice'}
),
required=False
)),
]