[web2py] web2py | video course | license terms

2019-11-01 Thread Jay B
Hello guys, I have become familiar with web2py over the last months and am now playing with the idea of creating a video course. However, I have been wondering for quite some time why there is no current video course on web2py. The only useful video material are the videos from Massimo on Vim

[web2py] Re: Validator IS_NOT_IN_DB not working | web2py

2019-10-18 Thread Jay B
Wow, that's actually how it works! Thank you very much! Am Freitag, 18. Oktober 2019 12:32:17 UTC+2 schrieb Annet: > > What about > > > form = SQLFORM() > if form.process(...).accepted > > > > instead of > > form = SQLFORM().process() > if form.accepted: > > > Best, > Annet > -- Resources: - htt

[web2py] Validator IS_NOT_IN_DB not working | web2py

2019-10-18 Thread Jay B
Hello guys, I'm struggling with a problem that's driving me crazy. The validator IS_NOT_IN_DB which I use for my object "tag" does not work for me. # TAG db.define_table('tag', Field('name', requires=(IS_SLUG(), IS_LOWER(), IS_NOT_IN_DB( db, 'tag.name'))), Field(

[web2py] Re: How to easily implement another CSS-Framework

2019-10-12 Thread Jay B
So, do you delete all views or just the layout view? Am Freitag, 11. Oktober 2019 19:01:07 UTC+2 schrieb Ruslan Gareev: > > Hi. Yes, you can delete files. For me it's normal and i use that way in my > projects. > > пятница, 11 октября 2019 г., 10:38:52 UTC+5 пользо

[web2py] Changing the css framework

2019-10-10 Thread Jay B
Hello guys, i'd like to use another css framework for my web2py app. Is there a easy way to replace it and start with a fresh new app? Greetz Jay -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.co

[web2py] How to easily implement another CSS-Framework

2019-10-10 Thread Jay B
Hello guys, I'm trying to figure out how to include another CSS framework instead of bootstrap. But the fact that the layout.html and other files point to the bootstrap files makes it harder than I thought. I would like to test other CSS frameworks like Semantic UI or Bulma instead of Bootstr