08-10-2009 11:13 AM
<td><a href="/alfresco${child.nodeRef}" target="new">${child.displayPath}</a></td>
<html><head></head>
<body>
<#– Table of docs in a specific folder –>
<h3>${space.name} - Elementos Bloqueados</h3>
<table cellpadding=1 border=0 style="BORDER: 1px;">
<td></td>
<td><b>Nombre</b></td>
<td><b>Última Modificación</b></td>
<td><b>Ubicación de Archivo</b></td>
<#assign query = ".//*[subtypeOf('cm:content')]">
<#list space.childrenByXPath[query] as child>
<#if child.isLocked>
<tr>
<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><a href="/alfresco${child.nodeRef}" target="new">${child.displayPath}</a></td>
</tr>
</#if>
</#list>
</table>
</body>
</html>
08-18-2009 06:29 PM
<td><a href="/alfresco${child.nodeRef}" target="new">${child.displayPath}</a></td>
La idea es que esta me lleve mediante un link a ese espacio, ya me he dado cuenta que con ${child.displayPath} me muestra08-28-2009 12:47 PM
<html><head></head>
<body>
<#– Table of docs in a specific folder –>
<h3>${space.name} - Elementos Bloqueados</h3>
<table cellpadding=1 border=0 style="BORDER: 1px;">
<td></td>
<td><b>Nombre</b></td>
<td><b>Última Modificación</b></td>
<td><b>Ubicación de Archivo</b></td>
<td><b>Ítem bloqueado por</b></td>
<#assign query = ".//*[subtypeOf('cm:content')]">
<#list space.childrenByXPath[query] as child>
<#if child.isLocked>
<tr>
<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><a href="/alfresco${child.parent.url}" target="new">${child.displayPath}</a></td>
<td>${child.properties["cm:modifier"]}</td>
</tr>
</#if>
</#list>
</table>
</body>
</html>
${child.parent.url}
07-21-2011 04:00 PM
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.