mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
+review RM-43 git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@103743 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
13 lines
306 B
Plaintext
13 lines
306 B
Plaintext
<#macro pagedResults data>
|
|
"total": ${data.total?c},
|
|
"pageSize": ${data.pageSize?c},
|
|
"startIndex": ${data.startIndex?c},
|
|
"itemCount": ${data.itemCount?c},
|
|
"items":
|
|
[
|
|
<#list data.items as item>
|
|
<#nested item>
|
|
<#if item_has_next>,</#if>
|
|
</#list>
|
|
]
|
|
</#macro> |