michael angelo ruberto wrote:
> 
> i want to create an index page that displays whether or not a page has been
> updated in the past 7 days or the past 20 days. however, i can't figure out
> how to get the bobobase_modification_date to compare with ZopeTime. can
> someone give me a clue before i rush blindly down Zope's undocumented dark
> alleys.
> 
> mike

untested

<ul>
<dtml-in "objectValues['DTMLDocument']">
<dtml-if "ZopeTime()-7 < bobo_base_modifcation_time">
        <li><b>New</b><dtml-var absolute_url></li>
<dtml-elif "ZopeTime()-20 < bobo_base_modifcation_time">
        <li><b>Somewhat New</b><dtml-var absolute_url></li>
<dtml-else>
        <li><b>Old</b><dtml-var absolute_url></li>
</dtml-if>
</dtml-in>
</ul>

kapil

_______________________________________________
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )

Reply via email to