Re: [web2py] Re: Profile link

2012-07-11 Thread Kevin Miller
Perfect. Thank you very much. I wanted a custom view. I choose the latter approach and it worked like a charm. I didn't realize it was that easy. Thanks again. On Wed, Jul 11, 2012 at 11:52 AM, Anthony wrote: > Just to clarify, are you saying your profile page has a custom URL (i.e., > somethin

Re: [web2py] Re: Profile link

2012-07-11 Thread Anthony
Just to clarify, are you saying your profile page has a custom URL (i.e., something other than /default/user/profile), or that it simply has a custom view (i.e., you need to use a view other than the standard /views/default/user.html view)? If the latter, there are two options. First, rather th

Re: [web2py] Re: Profile link

2012-07-11 Thread Kevin Miller
Thanks for the reply. That is my setup. The only edit I want is to change the link on profile to point to my custom profile. Apart from that, I don't want to edit any other function of the Auth system. Thanks. I kind a see where it might be possible in gluon/tools.py, but I don't want to touch the

[web2py] Re: Profile link

2012-07-11 Thread Anthony
The navbar assumes all the Auth actions are handled by the same function, with the action being specified via request.args[0]. If that's not your setup, then you'll have to create a custom navbar, or manipulate the navbar after it is generated. Anthony On Wednesday, July 11, 2012 11:15:21 AM U