mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-16 17:55:15 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2005 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
21 lines
750 B
Plaintext
21 lines
750 B
Plaintext
<#-- Table of the documents in my Home Space -->
|
|
<#-- Shows the Icon and link to the content for the doc, also the size in KB and lock status -->
|
|
<table>
|
|
<tr>
|
|
<td></td>
|
|
<td><b>Name</b></td>
|
|
<td><b>Size</b></td>
|
|
<td><b>Locked</b></td>
|
|
</tr>
|
|
<#list userhome.children as child>
|
|
<#if child.isDocument>
|
|
<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.size / 1000)?string("0.##")} KB</td>
|
|
<td> <#if child.isLocked>Yes</#if></td>
|
|
</tr>
|
|
</#if>
|
|
</#list>
|
|
</table>
|