gpt4 book ai didi

python - Django - 将 css 类添加到管理中的输入字段

转载 作者:太空宇宙 更新时间:2023-11-04 08:11:20 25 4
gpt4 key购买 nike

我有以下模型:

class InfoBox(models.Model):
type = models.ForeignKey(InfoBoxType)
content = models.TextField()
product = models.ForeignKey(Product)

我想为我的外键添加一个 css 类。我尝试了以下方法:

表单.py

class InfoBoxForm(ModelForm):
class Meta:
model = InfoBox
widgets = {
'type': ChoiceField(attrs={'class': 'hej'}),
}

我也试过这个,但结果相同......

class InfoBoxForm(forms.Form):

type = forms.ChoiceField(
widget=forms.ChoiceField(attrs={'class':'special'}))

admin.py

class InfoBoxInline(admin.StackedInline):
model = InfoBox
extra = 0
form = InfoBoxForm

但我只得到这个:

__init__() got an unexpected keyword argument 'attrs'

我认为这很容易做到,所以我做错了什么......?

最佳答案

尝试:

widgets = {
'type': Select(attrs={'class': 'hej'}),
}

这是适合您领域的小部件。

如果你不想覆盖小部件,你可以使用:

self.fields['type'].widget.attrs['class'] = 'hej'

在表单的初始化方法中

关于python - Django - 将 css 类添加到管理中的输入字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21911873/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com