You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
from django import forms
class BootStrap :
bootstrap_exclude_fields = [ ]
def __init__ ( self , * args , * * kwargs ) :
super ( ) . __init__ ( * args , * * kwargs )
# 循环ModelForm中的所有字段, 给每个字段的插件设置
for name , field in self . fields . items ( ) :
if name in self . bootstrap_exclude_fields :
continue
# 字段中有属性,保留原来的属性,没有属性,才增加。
if field . widget . attrs :
field . widget . attrs [ " class " ] = " form-control "
field . widget . attrs [ " placeholder " ] = field . label
else :
field . widget . attrs = {
" class " : " form-control " ,
" placeholder " : field . label
}
class BootStrapModelForm ( BootStrap , forms . ModelForm ) :
pass
class BootStrapForm ( BootStrap , forms . Form ) :
pass