Hi, >From my controller file:
@auth.requires_login()
def create():
...
def somethingelse():
...
When the user isn't logged in but tries to open the site
"create.html", then he's redirected to the logging-in-site. My problem
is that I'd like the user to be redirected to "somethingelse.html"
instead of the logging-in-site. How to code that?
Thanks in advance for help

