[Zope] TAG for file date
Dieter Maurer
dieter@handshake.de
Wed, 21 Jun 2000 00:26:20 +0200 (CEST)
CURTIS David writes:
> I tried to add <dtml-var "GuideFile.bobobase_modification_time">
> But I do not get an output displayed!!!
"bobobase_modification_time" is a method not an attribute.
You must call it:
<dtml-var "GuideFile.bobobase_modification_time()">
You can resolve problems like this (no output) by looking
at the source of the HTML document.
In your case, you would have seen:
<python method at ....>
Because this is not a valid tag, your browser has drop it silently.
Dieter