Re: [web2py] time field format doesn't work when edit

2013-04-22 Thread Richard Vézina
It should work as far as I can see... Are you sure you look at the right field, because only start has represent in the model definition you show us. Richard On Mon, Apr 22, 2013 at 6:16 PM, Christian Espinoza wrote: > Hi, I have this table definition: > > > db.define_table('timetable', >

[web2py] time field format doesn't work when edit

2013-04-22 Thread Christian Espinoza
Hi, I have this table definition: db.define_table('timetable', Field('customer', db.customer, label='Cliente'), Field('name', length=160, label='Nombre'), Field('start', 'time', label='Inicio' ), Field('finish', 'time', label='Final' ),