當前位置: 首頁>>代碼示例>>Python>>正文


Python FieldSet.__init__方法代碼示例

本文整理匯總了Python中formalchemy.FieldSet.__init__方法的典型用法代碼示例。如果您正苦於以下問題:Python FieldSet.__init__方法的具體用法?Python FieldSet.__init__怎麽用?Python FieldSet.__init__使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在formalchemy.FieldSet的用法示例。


在下文中一共展示了FieldSet.__init__方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: from formalchemy import FieldSet [as 別名]
# 或者: from formalchemy.FieldSet import __init__ [as 別名]
 def __init__(self, *arg, **kwargs):
     """Pre-configuration"""
     FieldSet.__init__(self, *arg, **kwargs)
     options = [self.ip_address.required().validate(IPAddressValidator),
                self.type.required(),
                self.location.textarea(size="25x10"),
                self.mac_address.validate(MacAddressValidator)
                ]
     self.configure(options=options)
開發者ID:fruch,項目名稱:python-snippts,代碼行數:11,代碼來源:pool_server.py

示例2: __init__

# 需要導入模塊: from formalchemy import FieldSet [as 別名]
# 或者: from formalchemy.FieldSet import __init__ [as 別名]
    def __init__(self, user = None):
        """Pre-configuration"""
        FieldSet.__init__(self, User)

        inc = [
            self.username.label(_("* Username you provided when registering")),
            self.email.label(_("* E-mail address you provided when registering")).required().validate(email_match),
              ]
        self.configure(include = inc)
開發者ID:zeitkunst,項目名稱:FluidNexusWebsite,代碼行數:11,代碼來源:forms.py

示例3: __init__

# 需要導入模塊: from formalchemy import FieldSet [as 別名]
# 或者: from formalchemy.FieldSet import __init__ [as 別名]
 def __init__(self):
     FieldSet.__init__(self, Session)
     self.configure(options=[
             self.sched_start.label("Scheduled Start"),
             self.sched_end.label("Scheduled End"),
             self.approved.label("Approved?"),
             self.cancelled.label("Cancelled?"),
             self.start.label("Actual Start"),
             self.end.label("Actual End"),
             self.notes.label("Log").textarea()], exclude=[
             self.problem])
開發者ID:prarobinson,項目名稱:cfmi,代碼行數:13,代碼來源:forms.py

示例4: __init__

# 需要導入模塊: from formalchemy import FieldSet [as 別名]
# 或者: from formalchemy.FieldSet import __init__ [as 別名]
 def __init__(self):
     FieldSet.__init__(self, User)
     self.add(Field('passwd1'))
     self.add(Field('passwd2'))
     include = [self.username,
                self.passwd1.password().label(u'Password'),
                self.passwd2.password().label(u'Confirm').\
                     validate(validators.passwords_match('passwd1')),
                self.email,
                self.firstname,
                self.lastname,
             ]
     self.configure(include=inc)
開發者ID:sumukh210991,項目名稱:Cyberweb,代碼行數:15,代碼來源:newadmin.py

示例5: __init__

# 需要導入模塊: from formalchemy import FieldSet [as 別名]
# 或者: from formalchemy.FieldSet import __init__ [as 別名]
    def __init__(self):
        """Pre-configuration"""
        FieldSet.__init__(self, User)

        self.add(Field('passwd1'))
        self.add(Field('passwd2'))
        inc = [self.username,
               self.passwd1.password().label(u'Password'),
               self.passwd2.password().label(u'Confirm') \
                   .validate(validators.passwords_match('passwd1')),
               self.email,
               self.fullname
               ]
        self.configure(include=inc)
開發者ID:twdb,項目名稱:txhis,代碼行數:16,代碼來源:admin_utils.py


注:本文中的formalchemy.FieldSet.__init__方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。