mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-16 17:55:15 +00:00
. Fixed templates list in Preview screen to catch AccessDeniedException for Guest user access to templates folder git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2339 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
15 lines
380 B
Plaintext
15 lines
380 B
Plaintext
<#-- Shows if a document is localizable and the locale if set -->
|
|
<b>Localisable:</b>
|
|
<#if document?exists>
|
|
<#if hasAspect(document, "cm:localizable") = 1>
|
|
Yes<br>
|
|
<#if document.properties.locale?exists>
|
|
Locale: ${document.properties.locale.properties.name}
|
|
</#if>
|
|
<#else>
|
|
No<br>
|
|
</#if>
|
|
<#else>
|
|
No document found!
|
|
</#if>
|