Errorea gertatu da txantiloia prozesatzerakoan.
The following has evaluated to null or missing: ==> redirectUrl [in template "842907#842945#3783109" at line 14, column 22] ---- Tip: If the failing expression is known to be 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 redirectUrl = redirectUrl?spl... [in template "842907#842945#3783109" at line 14, column 1] ----
1<#-- Variables -->
2<#assign zero = getterUtil.getInteger("0") />
3<#assign renderURL = themeDisplay.getURLCurrent()>
4<#assign redirectPatter = "redirectUrl=">
5
6<#if (renderURL?index_of(redirectPatter) != -1)>
7 <#assign paramLength = getterUtil.getInteger(renderURL?length)>
8 <#assign equalsIndex = getterUtil.getInteger(renderURL?index_of(redirectPatter))>
9 <#assign equalsIndex = equalsIndex + (redirectPatter?length)>
10 <#assign redirectUrl = httpUtil.decodeURL((renderURL?substring(equalsIndex,paramLength)))>
11</#if>
12
13<#-- En MS Edge viene con un parametro zx -->
14<#assign redirectUrl=redirectUrl?split("&")[0] >
15<#assign redirectUrl=redirectUrl?split("?")[0] >
16
17<div class="bipo_temas">
18 <div class="container">
19 <div class="row">
20 <div class="col-xxs-12 col-xs-11 col-md-11 col-xxs-offset-0 col-xs-offset-1 col-md-offset-1">
21 <h1 class="bipo-kiroljaia_muni"><span>${municipio.getData()}</span> </h1>
22 </div>
23 </div>
24 </div>
25
26 <#--VER SI HAY ACTIVIDADES-->
27 <#--VALOR EN EL PRIMER ELEMENTO -->
28 <#assign hayActividades = false>
29 <#if bloqueActividad.getSiblings()?has_content>
30 <#if bloqueActividad.getSiblings()[0].getChild('dia')?has_content
31 && bloqueActividad.getSiblings()[0].getChild('dia').getData()?has_content>
32 <#assign hayActividades =true>
33 </#if>
34 </#if>
35
36 <div class="container bipo-kiroljaia_detalle">
37 <#if hayActividades >
38
39 <div class="row">
40 <div class="col-xxs-12 col-xxs-offset-0 col-xs-10 col-xs-offset-1 col-sm-10 col-sm-offset-1 col-md-10 col-md-offset-1"> <#list bloqueActividad.getSiblings() as curBloque>
41 <#assign dia = curBloque.getChild('dia').getData()>
42 <#assign actividades = curBloque.getChild('actividades').getData()>
43
44 <#if validator.isNotNull(dia) && !validator.equals(dia?trim,"")>
45 <h2>${dia}</h2>
46 </#if>
47
48 <#if validator.isNotNull(actividades) && !validator.equals(actividades?trim,"")>
49 <div class="bipo-kiroljaia_actividad">${actividades}</div>
50 </#if>
51
52 </#list> </div>
53 </div>
54
55 </#if>
56
57 <#if telefono.getData()?has_content || enlaceExterno.getData()?has_content >
58 <div class="row">
59 <div class="col-md-4">
60 <div class="bipo-kiroljaia_contacto_div" >
61 <h2 class="bipo-kiroljaia_contacto_h2">
62 <@liferay.language key="kiroljaia.detalle.contacto"/>
63 </h2>
64 <ul>
65 <#if telefono.getData()?has_content >
66 <li><span class="bipoicon icon-phone"></span>
67 <@liferay.language key="kiroljaia.detalle.telefono"/>
68 : ${telefono.getData()}</li>
69 </#if>
70 <#if enlaceExterno.getData()?has_content >
71 <li><span class="bipoicon icon-icono_web"></span><a href="${enlaceExterno.getData()}" target="_blank">
72 <@liferay.language key="kiroljaia.detalle.web"/>
73 </a></li>
74 </#if>
75 </ul>
76 </div>
77 </div>
78 </div>
79 </#if>
80 </div>
81 <div class="container">
82 <div class="row">
83 <p class="col-xs-offset-1 col-xs-11 col-xxs-offset-0 col-xxs-12 bipo_enlace_izquierda"> <a href="${redirectUrl}" class="bipo_atras bipo-udaleku_volver" data-id="879460-ul" data-previo="bipo_menu_temas"><span aria-hidden="true" class="bipoicon bipo_iconOpenRight">←</span>
84 <@liferay.language key="kiroljaia.general.volver"/>
85 </a> </p>
86 </div>
87 </div>
88</div>