template-browser-not-supported

Departamento de Sociología

Atrás La alimentación fuera del hogar en Europa: Un análisis comparado de los modelos alimentarios extradomésticos en España y Reino Unido.

Se ha producido un error al procesar la plantilla.
Multiple compatible overloaded variations were found with the same priority.
The FTL type of the argument values were: Null.
The Java type of the argument values were: Null.
The matching overload was searched among these members:
    com.liferay.portal.kernel.util.Validator_IW.isNotNull(String),
    com.liferay.portal.kernel.util.Validator_IW.isNotNull(Long),
    com.liferay.portal.kernel.util.Validator_IW.isNotNull(Object)

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #if (validator.isNotNull(investigador...  [in template "38642#38670#945601" at line 29, column 17]
----
1<div class="proyecto mt-3"> 
2	<h3>${titulo.getData()}</h3> 
3	<dl> 
4		<#if (validator.isNotNull(referencia) && referencia.getData()?trim != "") > 
5			<dt>${languageUtil.get(locale,"portaleswebuniovi.referencia")}: </dt> 
6			<dd>${referencia.getData()}</dd> 
7		</#if> 
8		 
9		<#if (validator.isNotNull(entidad_financiadora) && entidad_financiadora.getData()?trim != "") > 
10			<dt>${languageUtil.get(locale,"portaleswebuniovi.entidad_financiada")}: </dt> 
11			<dd>${entidad_financiadora.getData()}</dd> 
12		</#if> 
13		 
14		<#if (validator.isNotNull(participantes) && participantes.getData()?trim != "") > 
15			<dt>${languageUtil.get(locale,"portaleswebuniovi.participantes")}: </dt> 
16			<dd>${participantes.getData()}</dd> 
17		</#if> 
18		 
19		<#if (validator.isNotNull(duracion) && duracion.getData()?trim != "") > 
20			<dt>${languageUtil.get(locale,"portaleswebuniovi.duracion")}: </dt> 
21			<dd>${duracion.getData()}</dd> 
22		</#if> 
23		 
24		<#if (validator.isNotNull(investigador_principal) && investigador_principal.getData()?trim != "") > 
25			<dt>${languageUtil.get(locale,"portaleswebuniovi.investigador_principal")}: </dt> 
26			<dd>${investigador_principal.getData()}</dd> 
27		</#if> 
28 
29		<#if (validator.isNotNull(investigador_oviedo) && investigador_oviedo.getSiblings()[0].getData()?trim != "") > 
30			<dt>${languageUtil.get(locale,"portaleswebuniovi.investigadores.oviedo")}: </dt> 
31                <dd> 
32					<ul> 
33						<#list investigador_oviedo.getSiblings() as investigadorx > 
34							<li>${investigadorx.getData()}</li> 
35						</#list> 
36					</ul> 
37				</dd> 
38		</#if> 
39 
40		<#if (validator.isNotNull(investigador) && investigador.getSiblings()[0].getData()?trim != "") > 
41			<dt>${languageUtil.get(locale,"portaleswebuniovi.investigadores.otros")}: </dt> 
42                <dd> 
43					<ul> 
44						<#list investigador.getSiblings() as investigadorx > 
45							<li>$investigadorx.getData()</li> 
46						</#list> 
47					</ul> 
48				</dd> 
49		</#if> 
50 
51	 
52 
53	</dl> 
54	 
55	<#if (validator.isNotNull(resumen) && resumen.getData()?trim != "") > 
56		<div class="resumen"> 
57			${resumen.getData()} 
58		</div> 
59	</#if> 
60</div>