我希望我錯了,但是在我看來,唯一沒有help_text
的方法是爲一個ManyToManyField寫一個__init__
方法,並覆蓋self.fields[fieldname].help_text
。這真的是唯一的方法嗎?我更喜歡使用CheckboxSelectMultple
小部件,所以我真的不得不爲任何使用ManyToManyField
的表單定義__init__
方法嗎?Django(1.2)Forms:ManyToManyField幫助文本
class ManyToManyField(RelatedField, Field):
description = _("Many-to-many relationship")
def __init__(self, to, **kwargs):
#some other stuff
msg = _('Hold down "Control", or "Command" on a Mac, to select more than one.')
self.help_text = string_concat(self.help_text, ' ', msg)
儘管我認爲這是固定的1.6,但它仍然是1.5版的方式。 – 2013-07-02 11:56:32
1.6.2不適合我= = / – mkoistinen 2014-03-16 20:28:23