码迷,mamicode.com
首页 > 其他好文 > 详细

BootStrapForm组件

时间:2020-05-04 12:57:59      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:continue   hold   sel   for   col   self   ace   item   div   

class BootStrapForm():
    bootstrap_exclude = []

    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        for name, field in self.fields.items():
            if name in self.bootstrap_exclude:
                continue
            old_class = field.widget.attrs.get("class","")
            field.widget.attrs["class"] = "{} form-control".format(old_class)
            field.widget.attrs["placeholder"] = "请输入{}".format(field.label)

 

BootStrapForm组件

标签:continue   hold   sel   for   col   self   ace   item   div   

原文地址:https://www.cnblogs.com/hude/p/12826040.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!