Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing:
==> data.result.extras  [in template "20100#20136#90037694" at line 28, column 67]

----
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: #assign extras = data.result.extras  [in template "20100#20136#90037694" at line 28, column 49]
----
1<!-- 
2Template Name: Detalle de Organizacion 
3Template Description: Detalle de Organizacion 
4Template Key: DETALLE_ORGANIZATION 
5Structure Key:  
6Cacheable: true 
7Small Image: false 
8Class Name: es.aragon.opendata.ws_tools.ws_connection.model.WSConnectionResponse 
9--> 
10 
11<#assign freemarkerUtilities = serviceLocator.findService("es.aragon.base.freemarker_utilities.api.FreemarkerUtilities")/> 
12 
13 
14<#if status == 200 && data?? && data!='null'> 
15<div class="opendata__organization-detail"> 
16	<h2> 
17		<span class="container readSpeakerOrigin">${data.result.title}<span> 
18	</h2> 
19	 
20	<div class="container"> 
21		<div class="row flex-column flex-md-row">  
22			<section class="col-12 p-0 mb-5"> 
23					<section class=" opendata__dataset-detail__body u-padding-bottom-4 u-padding-bottom-sm-6 readSpeakerOrigin"> 
24						<input type="hidden" id="organization" value="${data.result.name}"/> 
25						<#assign person = ""> 
26						<#assign webpage = ""> 
27						<#assign address = ""> 
28						<#assign extras = data.result.extras> 
29						<#list 0 ..< extras.length() as i> 
30							<#if extras.get(i).key == "person"> 
31								<#assign person = extras.get(i).value/> 
32							</#if> 
33							<#if extras.get(i).key == "webpage"> 
34								<#assign webpage = extras.get(i).value/> 
35							</#if> 
36							<#if extras.get(i).key == "address"> 
37								<#assign address = extras.get(i).value/> 
38							</#if> 
39						</#list> 
40 
41						<h3>${languageUtil.get(locale, "nombre-de-la-organizacion")}:</h3> 
42						<p>${data.result.title}</p> 
43 
44						<h3>${languageUtil.get(locale, "pagina-web-de-la-organizacion")}:</h3> 
45						<p><a href="${webpage}" target="_blank">${webpage}</a></p> 
46 
47 
48						<h3>${languageUtil.get(locale, "descripcion-de-la-organizacion")}:</h3> 
49						<p>${data.result.description?has_content?then(data.result.description,languageUtil.get(locale, "no-disponible"))}</p> 
50 
51						<h3>${languageUtil.get(locale, "direccion-de-la-organizacion")}:</h3> 
52						<p>${address?has_content?then(address,languageUtil.get(locale, "no-disponible"))}</p> 
53 
54						<h3>${languageUtil.get(locale, "persona-responsable-dentro-de-la-organizacion")}:</h3> 
55						<p>${person?has_content?then(person,languageUtil.get(locale, "no-disponible"))}</p> 
56 
57						<h3>${languageUtil.get(locale, "email-de-contacto")}:</h3> 
58						<p>${person?has_content?then(person,languageUtil.get(locale, "no-disponible"))}</p> 
59				</section> 
60			</section> 
61		</div> 
62	</div> 
63	 
64</div> 
65<#else> 
66	<#if themeDisplay.isSignedIn()> 
67		<div class="my-3"> 
68			<div class="container"> 
69                <div class="alert alert-info"> 
70                    <span>${languageUtil.get(locale, "no-ha-sido-posible-cargar-los-datos")}</span> 
71                </div> 
72			</div> 
73		</div> 
74	<#else> 
75		${request.setAttribute("PORTLET_CONFIGURATOR_VISIBILITY", false)} 
76	</#if> 
77</#if> 

Se ha accedido al conjunto de datos más de 10 veces en los últimos 40 días

¿Te ha resultado útil esta página?

Tu respuesta nos ayudará a mejorar la web

Gracias por tu valoración

Para cualquier consulta, escríbenos a portalpublico@aragon.es

Puedes dejar aquí tu comentario anónimo.