Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing:
==> ZONA_ACTUACION  [in template "20098#20124#39858" at line 83, column 10]

----
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: #if ZONA_ACTUACION.getData()?has_content  [in template "20098#20124#39858" at line 83, column 5]
----
1<#-- 
2Web content templates are used to lay out the fields defined in a web 
3content structure. 
4 
5Please use the left panel to quickly add commonly used variables. 
6Autocomplete is also available and can be invoked by typing "${". 
7--> 
8<style> 
9    .titulo-proyecto { 
10        margin-bottom: 1em; 
11        font-size: 1.5em; 
12
13    .proyecto-form { 
14        text-align: justify; 
15
16     
17    .proyecto-form label{ 
18         font-weight: bold; 
19         font-size: 0.9em; 
20
21 
22</style> 
23 
24<h1 class="cooperacion-title titulo-proyecto">${TITULO.getData()}</h1> 
25 
26 
27<form class="proyecto-form"> 
28 
29     
30    <#if IMAGEN.getData()?? && IMAGEN.getData() != ""> 
31        <div class="hidden-xs" style="float: left;width: 40%;margin-right: 15px;margin-bottom: 15px;"> 
32    	    <img alt="${IMAGEN.getAttribute("alt")}" data-fileentryid="${IMAGEN.getAttribute("fileEntryId")}" src="${IMAGEN.getData()}" class="img-responsive" /> 
33    	</div> 
34    	<div class="visible-xs" style="width: 100%;margin-right: 15px;margin-bottom: 15px;"> 
35    	    <img alt="${IMAGEN.getAttribute("alt")}" data-fileentryid="${IMAGEN.getAttribute("fileEntryId")}" src="${IMAGEN.getData()}" class="img-responsive" /> 
36    	</div>    	 
37    </#if> 
38     
39 
40    <#-- DATOS IDENTIFICATIVOS --> 
41    <div> 
42        <h2 class="cooperacion-title"><legend>Datos identificativos</legend></h2> 
43        <div class="form-row"> 
44            <div class="form-group col-md-6"> 
45              <label>Nombre/Razon social</label> 
46              <input readonly class="form-control-plaintext"  value="${NOMBRE_ENTIDAD.getData()}"> 
47            </div> 
48            <div class="form-group col-md-6"> 
49              <label>Nif/Cif</label> 
50              <input readonly class="form-control-plaintext"  value="${NifCif.getData()}"> 
51            </div>             
52        </div> 
53        <div class="form-group"> 
54            <label>Denominación del proyecto</label> 
55            ${DENOMINACION.getData()} 
56        </div> 
57    </div> 
58     
59    <#-- DATOS RELATIVOS AL PROYECTO --> 
60    <div> 
61        <h2 class="cooperacion-title"><legend>Datos relativos al proyecto</legend></h2> 
62        <div class="form-group"> 
63            <label>Breve resumen del proyecto</label> 
64            ${RESUMEN.getData()} 
65        </div> 
66        <div class="form-row"> 
67            <div class="form-group col-md-6"> 
68              <label>Año de la convocatoria</label> 
69              <input readonly class="form-control-plaintext"  value="${Anyo.getData()}"> 
70            </div> 
71        </div>          
72    </div> 
73     
74    <#-- SECTOR DE INTERVENCION --> 
75    <#if SECTOR_INTERVENCION.getData()?has_content> 
76    <fieldset> 
77        <h2 class="cooperacion-title"><legend>Sector de intervención</legend></h2> 
78        ${SECTOR_INTERVENCION.getData()}     
79    </fieldset> 
80    </#if> 
81 
82    <#-- ZONA DE ACTUACION --> 
83    <#if ZONA_ACTUACION.getData()?has_content> 
84    <fieldset> 
85        <h2 class="cooperacion-title"><legend>Zona de actuación</legend></h2> 
86        ${ZONA_ACTUACION.getData()}     
87    </fieldset> 
88    </#if>     
89     
90    <#-- ALINEACION --> 
91    <#if ALINEACION.getData()?has_content> 
92    <fieldset> 
93        <h2 class="cooperacion-title"><legend>Alineación del proyecto con la agenda 2030</legend></h2> 
94        ${ALINEACION.getData()}  
95    </fieldset> 
96    </#if> 
97 
98    <#-- CRS --> 
99    <#if CRS?has_content && CRS.getData()?has_content> 
100    <fieldset> 
101        <h2 class="cooperacion-title"><legend>CRS</legend></h2> 
102        ${CRS.getData()}  
103    </fieldset> 
104    </#if> 
105 
106    <#-- REGION --> 
107    <#if REGION.getData()?has_content> 
108    <fieldset> 
109        <h2 class="cooperacion-title"><legend>REGION</legend></h2> 
110        ${REGION.getData()}  
111    </fieldset> 
112    </#if>         
113 
114    <#-- PAIS --> 
115    <#if PAIS.getData()?has_content> 
116    <fieldset> 
117        <h2 class="cooperacion-title"><legend>PAIS</legend></h2> 
118        ${PAIS.getData()}  
119    </fieldset> 
120    </#if>             
121     
122    <#-- PRESUPUESTO --> 
123    <#if ImporteTotalDelProyecto.getData()?has_content || ImporteDeSubvenciónSolicitado?? && ImporteDeSubvenciónSolicitado.getData()?has_content> 
124    <fieldset> 
125        <h2 class="cooperacion-title"><legend>Presupuesto</legend></h2> 
126        <div class="form-row"> 
127            <div class="form-group col-md-6"> 
128              <label>Importe total del proyecto</label> 
129              <input readonly class="form-control-plaintext"  value="${ImporteTotalDelProyecto.getData()}"> 
130            </div> 
131            <#if ImporteDeSubvenciónSolicitado??> 
132                <#if ImporteDeSubvenciónSolicitado.getData()?has_content> 
133                    <div class="form-group col-md-6"> 
134                      <label>Importe de subvención concedido</label> 
135                      <input readonly class="form-control-plaintext"  value="${ImporteDeSubvenciónSolicitado.getData()}"> 
136                    </div> 
137                </#if> 
138            </#if> 
139        </div>    
140    </fieldset> 
141    </#if> 
142     
143    <#-- BENEFICIARIOS DIRECTOS --> 
144    <#if BENEFICIARIOS.getData()?has_content || TOTAL_BENEFICIARIOS.getData()?has_content || TOTAL_MUJERES_BENEFICIARIAS.getData()?has_content> 
145    <fieldset> 
146        <h2 class="cooperacion-title"><legend>Beneficiarios directos</legend></h2> 
147        ${BENEFICIARIOS.getData()} 
148        <div class="form-row"> 
149            <div class="form-group col-md-6"> 
150              <label>Nº Total de Beneficiarios</label> 
151              <input readonly class="form-control-plaintext"  value="${TOTAL_BENEFICIARIOS.getData()}"> 
152            </div> 
153            <div class="form-group col-md-6"> 
154              <label>Nº Total de Mujeres Beneficiarias</label> 
155              <input readonly class="form-control-plaintext"  value="${TOTAL_MUJERES_BENEFICIARIAS.getData()}"> 
156            </div> 
157        </div>    
158    </fieldset>   
159    </#if> 
160</form>