01-22-2009 10:29 AM
<html><head></head>
<body>
<#– Table of docs in a specific folder –>
<h3>${space.name} documents</h3>
<table cellpadding=2 border=0 style="BORDER: 1px;">
<tr>
<td></td>
<td><b>Name</b></td>
<td><b>Last Modified</b></td>
<td><b>Categories</b></td>
</tr>
<#assign query = ".//*[subtypeOf('cm:content')]">
<#list space.childrenByXPath[query] as child>
<tr>
<#if child.properties["cm:categories"]?exists>
<td><a href="/alfresco${child.url}" target="new"><img src="/alfresco${child.icon16}" border=0></a></td>
<td><a href="/alfresco${child.url}" target="new">${child.properties.name}</a></td>
<td>${child.properties["cm:modified"]?string("dd-MMM-yyyy hh:mm")}</td>
<td>
<#list child.properties["cm:categories"] as prop>
${prop.name}<br/>
</#list>
</td>
</#if>
</tr>
</#list>
</table>
</body>
</html>
01-22-2009 12:21 PM
<#list space.children as child>
….
</#list>
01-23-2009 05:07 AM
01-23-2009 05:36 AM
<#if child.properties["cm:categories"]?size gt 0 >
01-23-2009 06:22 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.