Buscando, por favor espere....

Estás en: Ayuntamiento de València

Recurso social - COMITÉ ESPAÑOL DEL ACNUR - València

Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing:
==> imagen.getAttribute("fileEntryId")  [in template "20115#20151#50802" at line 28, column 53]

----
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: #assign imageClassPK = imagen.getAttr...  [in template "20115#20151#50802" at line 28, column 29]
----
1<#assign dlAppServiceUtil = serviceLocator.findService("com.liferay.document.library.kernel.service.DLAppService") />  
2<div class="container"> 
3    <div class="row"> 
4        <div class="col-12"> 
5            <div class="row"> 
6                <div class="col-12"> 
7                    <h2>${nombreRecurso.getData()}</h2> 
8                </div> 
9            </div> 
10            <#if titularRecurso.getData()?has_content> 
11                <div class="row"> 
12                    <div class="col-12"> 
13                        <p><strong>Titular:</strong> ${titularRecurso.getData()}</p> 
14                    </div> 
15                </div> 
16            </#if> 
17            <#assign alt = "" /> 
18            <#if nombreImagen?? && nombreImagen.getData() != ""> 
19                <#assign alt = nombreImagen.getData() /> 
20            </#if> 
21            <#if imagen?? && imagen.getData()?? && imagen.getData() != ""> 
22                <div class="row"> 
23                    <div class="imagenPieRecurso">  
24                		<#assign imageJson = jsonFactoryUtil.createJSONObject(imagen.data)> 
25                        <#assign imageClassPK=""> 
26                         
27                        <#if imageJson?? && imageJson?has_content && imageJson.getString("fileEntryId")?has_content> 
28                            <#assign imageClassPK = imagen.getAttribute("fileEntryId")> 
29                            <#elseif imageJson?? && imageJson?has_content && imageJson.getString("classPK")?has_content> 
30                            <#assign imageClassPK = imageJson.getString("classPK")> 
31                        </#if> 
32                          
33                        <#if imageClassPK?? && imageClassPK?has_content && imageClassPK!=""> 
34                            <#assign imageClassPK2 = getterUtil.getLong(imageClassPK)> 
35                            <#-- <@adaptive_media_image["img"] title="${alt}" fileVersion=dlAppServiceUtil.getFileEntry(imageClassPK2).getFileVersion()/> --> 
36                        </#if> 
37					 
38                        <img style="max-width: 100%" alt="${alt}" title="${alt}" src="${imagen.getData()}" /> 
39                    </div> 
40                </div> 
41            </#if> 
42            <#if telefono?? && telefono.getSiblings()?has_content> 
43                <div class="row"> 
44                    <div class="col-12"> 
45                        <#list telefono.getSiblings() as cur_telefono> 
46                            <#if cur_telefono.getData() != "">  
47                                <p><strong><@liferay.language key="phone" />:</strong> ${cur_telefono.getData()}</p> 
48                            </#if> 
49                        </#list> 
50                    </div> 
51                </div> 
52            </#if> 
53            <#if fax.getData()?has_content && fax.getData() != ""> 
54                <div class="row"> 
55                    <div class="col-12"> 
56                        <p><strong><@liferay.language key="fax" />:</strong> ${fax.getData()}</p> 
57                    </div> 
58                </div> 
59            </#if> 
60            <#if email.getData()?has_content && email.getData() != ""> 
61                <div class="row"> 
62                    <div class="col-12"> 
63                        <p><strong><@liferay.language key="email" />:</strong> ${email.getData()}</p> 
64                    </div> 
65                </div> 
66            </#if> 
67                 
68            <#if actividad?? && actividad.getSiblings()?has_content> 
69                <div class="row"> 
70                    <div class="col-12"> 
71                        <p><strong><@liferay.language key="activities" />:</strong> 
72                            <ul> 
73                                <#list actividad.getSiblings() as cur_actividad> 
74                                    <#if cur_actividad.getData() != ""> 
75                                        <li>${cur_actividad.getData()?replace("<b/>", "")}</li> 
76                                    </#if> 
77                                </#list> 
78                            </ul> 
79                        </p> 
80                    </div> 
81                </div> 
82            </#if> 
83            <#if edad.getData()?has_content && edad.getData() != ""> 
84                <div class="row"> 
85                    <div class="col-12"> 
86                        <p><strong><@liferay.language key="age" />:</strong> ${edad.getData()}</p> 
87                    </div> 
88                </div> 
89            </#if> 
90            <#if sexo.getData()?has_content && sexo.getData() != ""> 
91                <div class="row"> 
92                    <div class="col-12"> 
93                        <p><strong><@liferay.language key="gender" />:</strong> ${sexo.getData()}</p> 
94                    </div> 
95                </div> 
96            </#if> 
97            <#if capacidad.getData()?has_content && capacidad.getData() != ""> 
98                <div class="row"> 
99                    <div class="col-12"> 
100                        <p><strong><@liferay.language key="capacity" />:</strong> ${capacidad.getData()}</p> 
101                    </div> 
102                </div> 
103            </#if> 
104            <#if horario.getData()?has_content && horario.getData() != ""> 
105                <div class="row"> 
106                    <div class="col-12"> 
107                        <p><strong>Horario:</strong> ${horario.getData()}</p> 
108                    </div> 
109                </div> 
110            </#if> 
111             
112            <#if horarioLaborable.getData()?has_content && horarioLaborable.getData() != ""> 
113                <div class="row"> 
114                    <div class="col-12"> 
115                        <p><strong>Horario laboral:</strong> ${horarioLaborable.getData()}</p> 
116                    </div> 
117                </div> 
118            </#if> 
119             
120            <#if horarioFestivo.getData()?has_content && horarioFestivo.getData() != ""> 
121                <div class="row"> 
122                    <div class="col-12"> 
123                        <p><strong>Horario festivo:</strong> ${horarioFestivo.getData()}</p> 
124                    </div> 
125                </div> 
126            </#if> 
127             
128            <#if otros.getData()?has_content && otros.getData() != ""> 
129                <div class="row"> 
130                    <div class="col-12"> 
131                        <p><strong><@liferay.language key="other" />:</strong> ${otros.getData()?replace("<b/>", "")}</p> 
132                    </div> 
133                </div> 
134            </#if> 
135             
136            <#if observaciones.getData()?has_content && observaciones.getData() != ""> 
137                <div class="row"> 
138                    <div class="col-12"> 
139                        <p><strong><@liferay.language key="actividad-organos-gobierno-observaciones" />:</strong> ${observaciones.getData()?replace("<b/>", "")}</p> 
140                    </div> 
141                </div> 
142            </#if> 
143        </div> 
144    </div> 
145</div> 
146<style> 
147picture{ 
148    display:none 
149
150</style>