我想在我的django项目中使用Bootstrap,因此总是将CSS类传递给每个表单错误。我们将其命名为“custom_class”。
我读了文档,它告诉我,理论上这个设置应该工作:
from django.forms.utils import ErrorList
class BootstrapErrorList(ErrorList):
error_class = "custom_class"
class BaseForm(forms.BaseForm):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.error_class = BootstrapErrorList
class FormA(forms.ModelForm, BaseForm):
# ...
class FormB(forms.Form, BaseForm):
# ...
没有错误或任何东西,但“custom_class”也没有显示在渲染的html中。这就是我告诉自己的。我还检查了this未回答的“问题”。
1条答案
按热度按时间2lpgd9681#
经过几天的调整,我让它正常工作:
这为每个从
BaseForm
继承的表单提供了css类“alert”和“alert-danger”。