I'm trying to avoid an extra DB hit by first checking for records in 
controller.  I set a "yes" or "no" type flag

But the conditional in the view doesn't care if flag is set to no, it still 
raises error stating that the set within the conditional as undefined.

Is the only way to get around this is put the isempty check in the view 
instead of controller?

{{if does_user_have_admin_roles == True:}}
           {{for r in admin_roles:}} 

<type 'exceptions.NameError'> name 'admin_roles' is not defined

also tried: {{if admin_roles:}}

thanks,

Alex Glaros


-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
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 web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to