6 Dec
1999
6 Dec
'99
12:46 a.m.
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()">