[Zope] dtml-if / object doumentation

Adam Gotheridge adam@foxvalley.net
Sun, 5 Dec 1999 18:46:58 -0600


Thanks again.

This leads me to another question:
Where can I find documentation for the objects methods and properties?

Adam

> In the if expression you're using (username==ATHENTICATED_USER), you're
> comparing an object to a string.  AUTHENTICATED_USER is a Zope object,
> not a string.
> 
> You want:
> 
> <dtml-if "username==AUTHENTICATED_USER.getUserName()">