diff --git a/emencia/django/newsletter/forms.py b/emencia/django/newsletter/forms.py index 40e5c5d0..4580329a 100644 --- a/emencia/django/newsletter/forms.py +++ b/emencia/django/newsletter/forms.py @@ -148,7 +148,7 @@ class ContactFilterForm(forms.Form): not_active = forms.BooleanField(label=_(u"Не подтверждена подписка"), required=False) not_valid = forms.BooleanField(label=_(u"Неалидный Email"), required=False) not_subscriber = forms.BooleanField(label=_(u"Отписался"), required=False) - types_choice = forms.TypedChoiceField(label=_(u'Тип записи'), required=False, choices=types_choice) + types_choice = forms.TypedChoiceField(label=_(u'Тип записи'), required=False, choices=types_choice, coerce=int) def filter(self): title = u'contact list '