Re: [web2py] custom form no submiting

2016-03-06 Thread prashant joshi
Than u Fabiano Almeida its run On Sun, Mar 6, 2016 at 10:39 PM, prashant joshi wrote: > thank u > > > On Fri, Mar 4, 2016 at 1:55 AM, Fabiano Almeida > wrote: > >> *view:* >> >> {{extend 'layout.html'}} >> {{=form.custom.begin}} >> >> >> >> {{=db.stud_per

Re: [web2py] custom form no submiting

2016-03-06 Thread prashant joshi
thank u On Fri, Mar 4, 2016 at 1:55 AM, Fabiano Almeida wrote: > *view:* > > {{extend 'layout.html'}} > {{=form.custom.begin}} > > > > {{=db.stud_person.first_name > .label}} > {{=form.custom.widget.first_name}} > >

Re: [web2py] custom form no submiting

2016-03-03 Thread Fabiano Almeida
*view:* {{extend 'layout.html'}} {{=form.custom.begin}} {{=db.stud_person.first_name .label}} {{=form.custom.widget.first_name}} {{=db.stud_person.middle_name .label}} {{=form.cus

[web2py] custom form no submiting

2016-03-03 Thread prashant joshi
def register(): form=SQLFORM(db.stud_person) print form.errors if form.process().accepted: response.flash='Bitte warten' elif form.errors: response.flash='Bitte fuellen sie das Formular richtig aus' return dict(form=form) view:- {{=form.custom.begin}}