Re: [web2py] Re: Bookings Manager

2011-04-13 Thread Stifan Kristi
same for me, i run it on url: http://127.0.0.1:8000/booking/default/index best regards, steve van christie

Re: [web2py] Re: Bookings Manager

2011-04-13 Thread Ismael Alejandro
Awesomee!!! That worked!!! Thanks! On Wed, Apr 13, 2011 at 6:49 PM, pbreit wrote: > It didn't work for me at first when I went to > http://127.0.0.1:8000/booking but it starting working when I went to > http://127.0.0.1:8000/booking/default/index > > Also try restarting web2py to make sure r

Re: [web2py] Re: Bookings Manager

2011-04-13 Thread pbreit
It didn't work for me at first when I went to http://127.0.0.1:8000/booking but it starting working when I went to http://127.0.0.1:8000/booking/default/index Also try restarting web2py to make sure routing is working OK.

Re: [web2py] Re: Bookings Manager

2011-04-13 Thread Stifan Kristi
hi ismail, i've tested it, your apps work fine on me, i think it's related with your browser. best regards, steve van christie

Re: [web2py] Re: Bookings Manager

2011-04-13 Thread pbreit
Works ok for me on Mac Safari, Chrome and Firefox. Make sure to first create at least one room with a status *other* than "verified". You won't see anything happen if the status is already "verified". This one may show it more clearly. It will toggle the status between "booked" and "verified".

Re: [web2py] Re: Bookings Manager

2011-04-13 Thread Ismael Alejandro
Tried with Chrome, Firefox. Nothing Happens :( On Wed, Apr 13, 2011 at 5:34 PM, Ismael Alejandro wrote: > I'm using chrome > > > On Wed, Apr 13, 2011 at 5:28 PM, Stifan Kristi < > steve.van.chris...@gmail.com> wrote: > >> i'll test the pbreitenbach's code and it works fine, pardon, which >> brows

Re: [web2py] Re: Bookings Manager

2011-04-13 Thread Stifan Kristi
i'll test the pbreitenbach's code and it works fine, pardon, which browser that u used? best regards, steve van christie

Re: [web2py] Re: Bookings Manager

2011-04-13 Thread Ismael Alejandro
Thanks pbreit! I'm trying to user your code but nothing happens... It shows the list with the link, but when I click the link nothing happens, no errors, no changes. Couldn't be easiest if I do it with checkboxes??? (I don't really know how) On Tue, Apr 12, 2011 at 4:30 PM, pbreit wrote: > I al

[web2py] Re: Bookings Manager

2011-04-12 Thread pbreit
I almost never advise an Ajax solution first but this might be a reasonable way to go. This will work for 10s of rooms but probably not 100s since you have to click once to verify each room. You can choose whatever statuses you want. I have it so that it becomes "verified" when you click the lin

[web2py] Re: Bookings Manager

2011-04-12 Thread b00m_chef
You need to add a db Boolean field for "validated". You will need to set default to False. Then simply have the admin validate page return all records in db that have validation=False. On Apr 11, 6:27 pm, Ialejandro wrote: > Hi everybody!! Again with my booking example, but now I'm really >