예제 #1
0
 def __init__(self, *args, ** kwargs):
     Form.__init__(self, *args, ** kwargs)
     self.user = None
예제 #2
0
파일: forms.py 프로젝트: cdepillabout/fitto
 def __init__(self, *args, **kwargs):
     Form.__init__(self, *args, **kwargs)
     if not self.next.data:
         self.next.data = get_redirect_target() or ''
예제 #3
0
파일: forms.py 프로젝트: tomik/honey
 def __init__(self, *a, **k):
     Form.__init__(self, *a, **k)
     self.sgf = None
예제 #4
0
파일: forms.py 프로젝트: tomik/honey
 def __init__(self, *a, **k):
     Form.__init__(self, *a, **k)
     self.short_path = None
예제 #5
0
파일: forms.py 프로젝트: tomik/honey
 def __init__(self, *a, **k):
     Form.__init__(self, *a, **k)
     self.user = None
 def __init__(self, *args, **kwargs):
     Form.__init__(self, *args, **kwargs)
     if not self.next.data:
         self.next.data = get_redirect_target() or ''
예제 #7
0
 def __init__(self, *args, **kwargs):
     kwargs['csrf_enabled'] = False
     Form.__init__(self, *args, **kwargs)
예제 #8
0
파일: base.py 프로젝트: gsk727/git
 def __init__(self):
     Form.__init__(self, id="frmUpdate")
예제 #9
0
파일: add_product.py 프로젝트: sebinsua/mu
    def __init__(self, formdata=None, obj=None, prefix='', **kwargs):
        agent_type_id = AgentType.query.filter_by(name=obj['agent_type']).one().agent_type_id
        kwargs.setdefault('agent_type', agent_type_id)

        Form.__init__(self, formdata, obj, prefix, **kwargs)