04-17-2009 11:02 AM
<#assign Months = {"Gennaio":"01"}+{"Febbraio":"02"}+{"Marzo":"03"}+{"Aprile":"04"}+{"Maggio":"05"}
+{"Giugno":"06"}+{"Luglio":"07"}+{"Agosto":"08"}+{"Settembre":"09"}+{"Ottobre":"10"}+{"Novembre":"11"}
+{"Dicembre":"12"}>
<p style="margin-left:35%; font-size:14px; "> Emissioni di oggi: ${date?string("d MM yyyy")}</p>
<#if companyhome.childByNamePath["Emissioni"]?exists>
<#list companyhome.childByNamePath["Emissioni"].children as x>
<#list x.children as y>
<#assign name_month = y.properties.name>
${Months.${name_month}?string}
${y.properties.name}<br>
<#list y.children as doc>
${doc.properties["cm:created"]?date?string("d MM yyyy")}<br>
${date?string("d MM yyyy")}
<#if doc.properties["cm:created"]?date?string("d MM yyyy") = date?string("d MM yyyy")>
are equals : ${doc.properties.name} <br>
<#if doc.properties["{http://www.xxx.com/model/content/1.0}Tema']?exists>
Tema dell emissione: ${doc.properties["{http://www.xxx.com/model/content/1.0}Tema"]}
</#if>
<#else>
are not equals : ${doc.properties.name} <br>
</#if>
</#list>
</#list>
</#list>
</#if>
<#assign name_month = y.properties.name>
${Months.${name_month}?string}
<#assign name_month = y.properties.name>
${Months.name_month}
04-17-2009 11:15 AM
<#assign Months = {
"Gennaio":1,
"Febbraio":2,
"Marzo":3,
… etc …
"Dicembre":12
}>and${Months[name_month]?string}04-17-2009 11:22 AM
${Months[name_month]}
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.