O eroare a apărut în timpul procesării șablonului.
The following has evaluated to null or missing: ==> arrowExp [in template "12187455#12187494#15624481" at line 36, column 70] ---- 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: ${arrowExp} [in template "12187455#12187494#15624481" at line 36, column 68] ----
1<#assign classExp=''>
2<#if getterUtil.getBoolean(expandido.getData())>
3 <#assign classExp= 'expandContent'>
4</#if>
5
6<#if locale == "es_ES">
7 <#assign target = "(Se abre en una nueva ventana)">
8 <#assign arrowExp = "Expandir">
9 <#assign arrowText = "Contraer">
10<#elseif locale == "en_US">
11 <#assign target = "(Opens in new window)">
12 <#assign arrowExp = "Expand">
13 <#assign arrowText = "Collapse">
14<#elseif locale == "pt_PT">
15 <#assign target = "(Abre em uma nova janela)">
16 <#assign arrowExp = "Expandir">
17 <#assign arrowText = "Recolher">
18<#elseif locale == "gl_ES">
19 <#assign target = "(Ábrese nunha nova ventá)">
20 <#assign arrowExp = "Expandir">
21 <#assign arrowText = "Recoller">
22<#elseif locale == "ca_ES">
23 <#assign target = "(S’obre en una nova finestra)">
24 <#assign arrowExp = "Expandir">
25 <#assign arrowText = "Contraure">
26<#elseif locale == "fr_FR">
27 <#assign target = "(S’ouvre dans une nouvelle fenêtre)">
28 <#assign arrowExp = "Développer">
29 <#assign arrowText = "Réduire">
30</#if>
31
32<#assign id = .vars['reserved-article-id'].data>
33
34<div class="info_interior_listado .info_politicas ${classExp}">
35 <#if validator.isNotNull(titulo.getData())>
36 <a href="#" class="cont_titulo" onclick="spanText('${id}','${arrowExp}','{$arrowText')" title="${titulo.getData()}">
37 <h3>${titulo.getData()}</h3>
38
39 <#if getterUtil.getBoolean(expandido.getData())== true>
40 <span class='sr-only'id="expand-contr-${id}">${arrowText}</span>
41 <#else>
42 <span class='sr-only'id="expand-contr-${id}">${arrowExp}</span>
43 </#if>
44 <span class="icon_arrow"></span>
45 </a>
46 </#if>
47
48 <ul style="list-style: none;">
49 <#if nombreDocumento.getSiblings()?has_content>
50 <li>
51 <div class="cont_tituloDoc">
52 <ul>
53 <#list nombreDocumento.getSiblings() as cur_nombreDocumento>
54 <li class="cont_enlace">
55 <#if validator.isNotNull(cur_nombreDocumento.enlace.getData())>
56 <div class="cont_tituloDoc">
57 <span class="fcc-stop2"> </span>
58 <a href="${cur_nombreDocumento.enlace.getData()}" target="_BLANK">
59 ${cur_nombreDocumento.getData()}
60 </a>
61 </div>
62 <#elseif cur_nombreDocumento.documento.getSiblings()?has_content>
63 <div class="cont_tituloDoc">
64 <span class="fcc-stop2"> </span>
65 <a data-target="#modal${cur_nombreDocumento?index}" data-toggle="modal" href="javascript:void(0)">
66 ${cur_nombreDocumento.getData()}
67 </a>
68 </div>
69 <div class="modal fade" id="modal${cur_nombreDocumento?index}" role="dialog"
70 style="display: none;" aria-hidden="true">
71 <div class="modal-dialog">
72 <div class="modal-content">
73 <div class="modal-body">
74 <div class="modal-header">
75 <h4><strong>${cur_nombreDocumento.getData()}</strong></h4>
76 </div>
77
78 <ul style="list-style: none;margin-left: 1rem;">
79 <#list cur_nombreDocumento.documento.getSiblings() as cur_nombreDocumento_documento>
80 <li>
81 <a href="${cur_nombreDocumento_documento.getData()}" target="_blank">
82 <img alt="pdf" src="/documents/12187494/13937324/iconopdf.jpg/dce93862-0422-f7e5-3cbc-1652bd9f6560?t=1520431755000">
83 <#if validator.isNotNull(cur_nombreDocumento_documento.tituloDoc.getData())>
84 ${cur_nombreDocumento_documento.tituloDoc.getData()}
85 <#else>
86 ${cur_nombreDocumento.getData()}
87 </#if>
88 </a>
89 </li>
90 </#list>
91 </ul>
92 </div>
93
94 <div class="modal-footer">
95 <div class="texto-inferior-footer"> </div>
96 <strong><button class="abtn" data-dismiss="modal"
97 type="button">Cerrar</button></strong>
98 </div>
99 </div>
100 </div>
101 </div>
102
103 </#if>
104 </li>
105 </#list>
106 </ul>
107 </div>
108 </li>
109 </#if>
110 </ul>
111</div>