Regolamento delegato (UE) n. 826/2012 - AREA PUBBLICA
Ricerca
Si è verificato un errore nell'elaborarazione del modello.
The following has evaluated to null or missing: ==> httpUtil.decodeURL [in template "10154#10194#14826" at line 17, column 19] ---- Tip: It's the step after the last dot that caused this error, not those before it. ---- Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)?? ---- ---- FTL stack trace ("~" means nesting-related): - Failed at: ${httpUtil.decodeURL(sappo?substring(... [in template "10154#10194#14826" at line 17, column 17] ----
1<#assign data_DateObj = dateUtil.newDate(getterUtil.getLong(data.getData()))>
2
3
4<div class="sfondo-pers-pers divContent">
5
6<div><strong>${dateUtil.getDate(data_DateObj, "dd MMMM yyyy ", locale)}</strong> - ${contenutoHtml.getData()}</div>
7<div >Numero <strong> ${numero.getData()}</strong></div>
8<#if allegato.getSiblings()?has_content>
9 <#list allegato.getSiblings() as cur_allegato>
10 <#if cur_allegato?? && cur_allegato.getData()?has_content >
11 <p>
12 <a class="cambioimmagine" href="${cur_allegato.getData()}" target="_blank"> <i class="tablescarica"></i>
13 <strong class="infoStoricheVedi">
14
15 <#assign sappo= cur_allegato.getData()?substring(0, cur_allegato.getData()?last_index_of("/"))>
16
17 ${httpUtil.decodeURL(sappo?substring( sappo?last_index_of("/")+1))}
18
19 </strong></a>
20 </p>
21 <div class="clearer" ></div>
22 </#if>
23 </#list>
24</#if>
25</div>
VEDI ANCHE
