On Monday, November 14, 2011 4:24:12 PM UTC-5, Chris wrote:
>
> {{if user_id:}}
>
Note, auth.user_id returns the id of the current logged in user or None
otherwise, so you can use:
{{if auth.user_id}}
> <span>Welcome {{=user_current().first_name }}!</span>
>
Also, auth.user returns the full user record of the current logged in user,
or None otherwise, so you can do:
{{=auth.user.first_name}}
Anthony

