#-- Table of docs in a specific folder, that have been created or modified in the last week -->
Documents created or modified in the last week
|
Name |
Created Date |
Modified Date |
<#list space.childrenByXPath[".//*[subtypeOf('cm:content')]"] as child>
<#if (dateCompare(child.properties["cm:modified"], date, 1000*60*60*24*7) == 1) || (dateCompare(child.properties["cm:created"], date, 1000*60*60*24*7) == 1)>
 |
${child.properties.name} |
${child.properties["cm:created"]?datetime} |
${child.properties["cm:modified"]?datetime} |
#if>
#list>