diff --git a/company/edit_forms.py b/company/edit_forms.py index bd3481b4..5d6ff973 100644 --- a/company/edit_forms.py +++ b/company/edit_forms.py @@ -109,7 +109,7 @@ class SocialForm(BaseForm): class ThemeForm(BaseForm): - theme = forms.ModelMultipleChoiceField(oqueryset=Theme.objects.all()) + theme = forms.ModelMultipleChoiceField(queryset=Theme.objects.all()) class Meta: model = Company fields = ('theme',)