[web2py] Re: A guide how to install your web2py app on your own server (using DigitalOcean droplets)

2016-02-15 Thread 'M Bailey' via web2py-users
Wow just read your blog. Really useful, clear instructions - thank you. On Monday, 15 February 2016 10:54:01 UTC, Dragan Matic wrote: > > Hey guys, I wrote a guide for beginners how to install and configure your > own server and how to host your web2py app on it, if anybody's interested >

[web2py] Re: Yellow box on screen following update

2016-02-08 Thread M Bailey
> > > Thanks guys, appreciate the feedback. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the

[web2py] Yellow box on screen following update

2016-02-04 Thread M Bailey
Hi All I just updated web2py today on my ubuntu box and I now get a yellow box on the screen in the admin area, which wasn't appearing before (screen shot attached). It's like an information dialog which isn't displaying anything and it only affects the admin area. The applications themselves

[web2py] Auth.form customisation

2014-05-20 Thread M Bailey
I'm having a degree of trouble attempting to style an instance of auth.form() with a Bootswatch theme; I can style normal forms with a Bootswatch theme, it's simply the auth.form which is giving me grief. - For instance it's possible to pass a CSS class to an auth.form in

[web2py] Re: Newbie - SQLFORM ordering of reference fields

2014-04-25 Thread M Bailey
On Thursday, 24 April 2014 14:05:45 UTC+1, Massimo Di Pierro wrote: db.search_form.pet_type_ref.requires = IS_IN_DB(db,'pet_type',orderby=db.pet_type.description) OR this may work too: db.search_form.pet_type_ref.requires.orderby = db.pet_type.description Massimo thank you, that

[web2py] Newbie - SQLFORM ordering of reference fields

2014-04-24 Thread M Bailey
I'm trying to migrate a django project to web2py. I have defined a search form with selectoption fields populated from the database and using code similar to below, but I can't see a way of changing the ordering of the SQLFORM fields: db.define_table('pet_type', Field('description',