2025-05-14 - València
Consells de districtes
Calendari Consells de Districte Ordinaris corresponents al primer trimestre 2025 (pdf 156 kb)Intervencions veïnals en els Consells de Districte Full de participació Formulari d'Inscripció en els Grups de Treball de les Juntes de DistricteAccés als vídeos dels Consells de Districte
S'ha produït un error mentre es processava la plantilla.
The following has evaluated to null or missing: ==> cur_ordenDelDia.numOrdenEpigrafe [in template "20115#20151#262067" at line 63, column 36] ---- 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 numEpi = "0000" + cur_ordenDe... [in template "20115#20151#262067" at line 63, column 9] ----
1<#assign liferay_theme = PortletJspTagLibs["/META-INF/liferay-theme.tld"] />
2<@liferay_theme["defineObjects"] />
3<#assign themeRootPath = themeDisplay.getPathThemeRoot() />
4<#assign themeImagesPath = themeDisplay.getPathThemeImages() />
5
6<#assign backUrl = "" />
7<#if request.getHeader("Referer")?? >
8 <#assign backUrl = request.getHeader("Referer") />
9</#if>
10
11<div class="row clearmargin">
12 <div>
13 <span class="volver"><img src="${themeImagesPath}/icons/icono_volver.svg"> <@liferay.language key="volver" />
14 </span>
15 </div>
16</div>
17
18<h2 class="bloque_titulo">${nombreOrgano.getData()}</h2>
19
20<div class="row">
21 <div class="col-xs-3"><strong><@liferay.language key="actividad-organos-gobierno-fecha" />: </strong></div>
22 <#assign fecha = fecha.getData()>
23 <#assign dia = fecha?substring(8,10)>
24 <#assign mes = fecha?substring(5,7)>
25 <#assign anyo = fecha?substring(0,4)>
26 <div class="col-xs-3">${dia}-${mes}-${anyo}</div>
27 <div class="col-xs-3"><strong><@liferay.language key="actividad-organos-gobierno-hora" />: </strong></div>
28 <div class="col-xs-3">${hora.getData()}</div>
29
30 <div class="col-xs-3"><strong><@liferay.language key="actividad-organos-gobierno-organo" />: </strong></div>
31 <div class="col-xs-3">${organo.getData()}</div>
32 <div class="col-xs-3"><strong><@liferay.language key="actividad-organos-gobierno-caracter" />: </strong></div>
33 <div class="col-xs-3">${caracter.getData()}</div>
34
35 <div class="col-xs-3"><strong><@liferay.language key="actividad-organos-gobierno-observaciones" />: </strong></div>
36 <div class="col-xs-9">${observaciones.getData()}</div>
37</div>
38<hr>
39
40<#assign showPDFs = false>
41<#if actas.getSiblings()?has_content>
42 <#list actas.getSiblings() as cur_acta>
43 <#if cur_acta.enlaceOrden?has_content && cur_acta.enlaceOrden.getData()?has_content>
44 <a href="${cur_acta.enlaceOrden.getData()}" rel="link" target="_blank"><img align="midle" width="20px" src="${themeImagesPath}/icons/icono_down_pdf.svg" /> <@liferay.language key="actividad-organos-gobierno-descargarorden" /></a><br />
45 <#assign showPDFs = true>
46 </#if>
47 <#if cur_acta.enlaceActa?has_content && cur_acta.enlaceActa.getData()?has_content>
48 <a href="${cur_acta.enlaceActa.getData()}" rel="link" target="_blank" ><img align="midle" width="20px" src="${themeImagesPath}/icons/icono_down_pdf.svg" /> <@liferay.language key="actividad-organos-gobierno-descargaracta" /></a><br />
49 <#assign showPDFs = true>
50 </#if>
51 <#if cur_acta.enlaceVecinales?has_content && cur_acta.enlaceVecinales.getData()?has_content>
52 <a href="${cur_acta.enlaceVecinales.getData()}" rel="link" target="_blank" ><img align="midle" width="20px" src="${themeImagesPath}/icons/icono_down_pdf.svg" /> <@liferay.language key="actividad-organos-gobierno-descargarvecinales" /></a><br />
53 <#assign showPDFs = true>
54 </#if>
55 </#list>
56</#if>
57<#if showPDFs>
58 <hr>
59</#if>
60<#if ordenDelDia.getSiblings()?has_content>
61 <h4 class="actasyordenes_h4"><@liferay.language key="actividad-organos-gobierno-ordendeldia" />:</h4>
62 <#list ordenDelDia.getSiblings() as cur_ordenDelDia>
63 <#assign numEpi = "0000" + cur_ordenDelDia.numOrdenEpigrafe.getData()>
64 <#assign nEpi = numEpi?substring(numEpi?length-4, numEpi?length)>
65
66 <div class="ficha">
67 <div class="row">
68 <div class="col-xs-12">
69 <#if nEpi != "0000">
70 ${nEpi} -
71 </#if>
72 ${cur_ordenDelDia.epigrafe.getData()}
73
74 <#if cur_ordenDelDia.numExpediente.getData()?trim?length != 0 >
75 <br /><@liferay.language key="actividad-organos-gobierno-expediente" />: ${cur_ordenDelDia.numExpediente.getData()} -
76 </#if>
77 <#if cur_ordenDelDia.numExpediente.getData()?trim?length == 0 >
78 <br />
79 </#if>
80 <#if cur_ordenDelDia.estadoAcuerdo.getData()== "A" >
81 <strong><@liferay.language key="aprobado" /></strong>
82 <#elseif cur_ordenDelDia.estadoAcuerdo.getData()== "Q">
83 <strong><@liferay.language key="enterado" /></strong>
84 <#elseif cur_ordenDelDia.estadoAcuerdo.getData()== "E">
85 <strong><@liferay.language key="enmiendas" /></strong>
86 <#elseif cur_ordenDelDia.estadoAcuerdo.getData()== "R">
87 <strong><@liferay.language key="rechazado" /></strong>
88 <#elseif cur_ordenDelDia.estadoAcuerdo.getData()== "P">
89 <strong><@liferay.language key="alternativa" /></strong>
90 <#elseif cur_ordenDelDia.estadoAcuerdo.getData()== "C">
91 <strong><@liferay.language key="contestada" /></strong>
92 <#elseif cur_ordenDelDia.estadoAcuerdo.getData()== "U">
93 <strong><@liferay.language key="urgencia" /></strong>
94 <#elseif cur_ordenDelDia.estadoAcuerdo.getData()== "-">
95 <strong><@liferay.language key="retirado" /></strong>
96 <#elseif cur_ordenDelDia.estadoAcuerdo.getData()== "S">
97 <strong><@liferay.language key="sobrelamesa" /></strong>
98 <#elseif cur_ordenDelDia.estadoAcuerdo.getData()== "X">
99 <strong><@liferay.language key="proximasesion" /></strong>
100 </#if>
101 </div>
102 </div>
103 </div>
104 </#list>
105</#if>
106<script>
107$(document).ready(function() {
108 var backUrl = "${backUrl}";
109
110 $(".h2").remove();
111 $(".volver").on("click", function(){
112 if(backUrl == ""
113 ||(backUrl.length > 6 && backUrl.substring(backUrl.length-7, backUrl.length).toLowerCase() == "/client")) {
114 history.go(-1);
115 }else{
116 window.location.href = backUrl;
117 }
118 });
119});
120</script>
Codi: sweb741:8080: