Cercador
FEDERACIÓ SALUT MENTAL CATALUNYA
Salut Mental Catalunya som un moviment social de representació, atenció i suport a les persones amb problemes de salut mental i les nostres famílies. Portem més de 25 anys potenciant el model d’atenció comunitària i defensant els nostres drets per avançar cap a una societat més inclusiva i que garanteixi la igualtat d’oportunitats.
No s'ha trobat cap resultat
Entitat organitzadora
S'ha produït un error mentre es processava la plantilla.
The following has evaluated to null or missing: ==> mur.r_murDentitat_c_entitatId [in template "77092924728624#32380#null" at line 7, column 21] ---- 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: idEntidad = mur.r_murDentitat_c_entit... [in template "77092924728624#32380#null" at line 7, column 9] ----
1<#assign
2 idMur = ObjectEntry_objectEntryId.getData()
3 urlApiPropuestas = "/c/murdentitats/" + idMur
4 mur = restClient.get(urlApiPropuestas)
5/>
6<#assign
7 idEntidad = mur.r_murDentitat_c_entitatId
8 urlApiEntidad = "/c/entitats/" + idEntidad
9 entidad = restClient.get(urlApiEntidad)
10/>
11<#assign
12 prop = jsonFactoryUtil.createJSONObject(entidad)
13>
14<#assign
15 logo_censada= "/documents/d/guest/censada"
16 logo_default= "/documents/d/guest/logo-proposta-portada"
17/>
18<#if (entidad.nmeroDeCens)?? >
19 <#assign nmeroDeCens= entidad.nmeroDeCens />
20 <#assign nmeroDeCens_number= entidad.nmeroDeCens?number />
21 <#if (nmeroDeCens_number > -1) >
22 <#assign logicaPresentacion_verLogoCenso= true />
23 <#else>
24 <#assign logicaPresentacion_verLogoCenso= "" />
25 </#if>
26</#if>
27<#-- // Calculo logotipo o logo por defecto -->
28<#if (entidad.logotip.link.href)?has_content>
29 <#assign logo_srcimg= entidad.logotip.link.href?split("?")[0] />
30<#else>
31 <#assign logo_srcimg= logo_default />
32</#if>
33 <!-- bj:: imagen -->
34 <div>
35 <!-- bj:: imagen censada -->
36 <#if logicaPresentacion_verLogoCenso?string = "true" >
37 <div style="position: absolute; z-index: 1;">
38 <img alt="" src="${logo_censada}">
39 </div>
40 </#if>
41 <!-- bj:: imagen logo -->
42 <img alt="" class="img-llista img-responsive"
43 style="cursor: pointer;" tabindex="0"
44 src="${logo_srcimg}">
45 <!---->
46 </div>