Hi,
I'm newbie with python and Web2Py. My problem : I want customize my
register form.
This is my code
#model
auth_table = db.define_table(auth.settings.table_user_name,
Field('first_name', length=128, default=''),
Field('last_name', length=128, default=''),
Field('email', length=128, default='', unique=True),
Field('password', 'password',length=256,readable=False,
label='Password'),
Field('registration_key', length=128, default= '',writable=False,
readable=False),
Field('orgUrl','string'),
Field('orgName','string'),
Field('orgAddress1','string',widget=patternNormal),
Field('orgAddress2'),
Field('orgZipCode'),
Field('orgCity1'),
Field('orgCountry','string'),
Field('orgDescription','text'),
Field('orgActivityDomain','string'),
Field('orgLogo','upload'),
Field('acceptCgi','boolean'),
Field('acceptMailing','boolean'),
Field('locale',default='fr_FR',writable=False,readable=False)
)
#controller
def register():
return dict(form=auth.register())
#view
{{=form.custom.begin}}
{{=form.custom.widget.first_name}}
...
{{=form.custom.end}}
{{=form.custom.begin}} serialize this code : <form method="post"
enctype="multipart/form-data" action="">
I want to set an ID to this form. What's the best way for achieve my
goal ?
Thanks
--
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/web2py?hl=en.