By default auth seems to assume everything is under:
default/user/[login,register,etc.]
But I want to instead have everything under:
user/handle/[login,register,etc.]
So I moved the user() function from default.py to handle() in user.py.
The reason I wanted to do this was so I could have a component
user/handle.load that I could add to any page via LOAD. I followed the
examples from the web2py docs to do this. So I have:
views/default/index.html:
{{extend 'layout.html'}}
{{=LOAD('user','handle.load',ajax=True)}}
views/user/handle.html:
{{=form}}
But when I view the default page all I get is an error saying: *invalid
function (default/handle)*
Attempting to navigate to /app/user/handle.load directly results in the
same error. The URL has changed to /app/default/handle.load/login
So there seems to be some implicit routing going on. How do I fix this.
*OR*
Is there a better way to be doing a sidebar login via a component? All I
want is a small login form in the sidebar, and a register button that takes
the user to the registration page.
Thanks!
--
---
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.