Source (Text):
<dtml-unless lessDays>
<dtml-call "REQUEST.set('lessDays', 14)">
</dtml-unless>
<TABLE>
<form method="post">
<b>Sites updated in the last <input type ="text" name="lessDays" value="<dtml-var lessDays>" size="2"> Days.</b>
<input type="submit" value="refresh">
</form>
<dtml-in expr="objectValues('Folder')" sort="bobobase_modification_time" reverse>
<dtml-let date="bobobase_modification_time()">
<dtml-call "REQUEST.set('endDate', _.DateTime() - _.int(lessDays))">
<dtml-unless "_.string.find(_['id'],'index_html')==0">
<dtml-if "date > endDate">
<TR>
<TD bgcolor="#E3E3E3"><a href="&dtml-absolute_url;"><dtml-var title_or_id></a></TD>
<dtml-if "date.isCurrentYear() and date.isCurrentMonth() and date.isCurrentDay()">
<TD bgColor="#CCCCCC"><dtml-var date fmt="aCommon"></TD>
<dtml-elif "date.isCurrentYear() and date.isCurrentMonth()">
<TD bgColor="#efefef"><dtml-var date fmt="aCommon"></TD>
</dtml-if>
</TR>
</dtml-if>
</dtml-unless>
</dtml-let>
</dtml-in>
</TABLE>
|