Я пытаюсь создать настраиваемое поле для ModelForm.Я расширяю ModelMultipleChoiceField, а затем переопределяю render и render_options, однако, я продолжаю получать это исключение, когда просто пытаюсь импортировать мою форму:
AttributeError: 'ModelMultipleChoiceField' object has no attribute 'to_field_name'
Я не уверен, что япропускаюЯ даже пытался добавить атрибут to_field_name в мой новый класс, но это не помогает.Вот мой код:
class MultiSelect(ModelMultipleChoiceField):
def __init__(self, queryset, cache_choices=False, required=True,
widget=None, label=None, initial=None, help_text=None, *args, **kwargs):
super(MultiSelect, self).__init__(queryset, cache_choices, required, widget,
label, initial, help_text, *args, **kwargs)
def render_options(self, name, choices, selected_choices):
output = []
i = 0
for option_value, option_label in chain(self.choices, choices):
checked_html = (option_value in selected_choices) and u' checked="checked"' or ''
class_html = (i % 2 == 0) and u'even' or u'odd'
output.append('<li class="{0}"><input type="checkbox" name="{1}" value="{2}"{3}/>{4}</li>'
.format(class_html, name, escape(option_value), checked_html, escape(option_label)))
i += 1
def render(self, name, value, attrs=None, choices=()):
if value is None: value = []
final_attrs = self.build_attrs(attrs, name=name)
output = [u'<ul class="multiSelect">']
options = self.render_options(name, choices, value)
if options:
output.append(options)
output.append('</ul>')
return mark_safe(u'\n'.join(output))
class RoleForm(ModelForm):
class Meta:
model = Role
exclude = ('user_id',)
widgets = {
'permissions': MultiSelect(queryset=Permission.objects.all())
}
Всякий раз, когда я просто делаю from myapp.forms import RoleForm
, я получаю ошибку выше.
Должен ли я добавить что-то в свой класс, что мне не хватает?