Estas en:

Actividades Deportivas

Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing:
==> objetos  [in template "10114#2295845#2419274" at line 21, column 14]

----
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 objetos.getData()??  [in template "10114#2295845#2419274" at line 21, column 9]
----
1<div class="titulo"> 
2  <h2>${titulo.getData()}</h2> 
3</div> 
4 
5<div class="detalle"> 
6    <#if resumen.getData()??> 
7        ${resumen.getData()} 
8    </#if> 
9	 
10	<div class="contacto"> 
11	  <ul> 
12        <#if epoca.getData()??> 
13			<li><strong>Epoca:</strong> ${epoca.getData()}</li> 
14        </#if> 
15        <#if lugar.getData()??> 
16            <li><strong>Lugar:</strong> ${lugar.getData()}</li> 
17        </#if> 
18        <#if beneficiarios.getData()??> 
19			<li><strong>Beneficiarios:</strong> ${beneficiarios.getData()}</li> 
20        </#if> 
21        <#if objetos.getData()??> 
22			<li><strong>Objetivos:</strong> ${objetos.getData()}</li> 
23        </#if> 
24        <#if formaAtencion.getSiblings()?has_content> 
25			<li><strong>Forma de atención:</strong>  
26			<#assign primero = 0> 
27            <#list formaAtencion.getSiblings() as formas> 
28			  <#if formas.getData()??> 
29				<#if primero != 0> 
30					<span> 
31                </#if> 
32                ${formas.getData()} 
33                <#if formas.telefono.getData()??> 
34                , ${formas.telefono.getData()} 
35                </#if> 
36				<#if formas.direccion.getData()??> 
37				, ${formas.direccion.getData()} 
38                </#if> 
39				<#if primero == 0> 
40			        <#assign primero = 1> 
41                <#else> 
42					</span> 
43                </#if> 
44             </#if> 
45            </#list> 
46			</li> 
47        </#if> 
48	  </ul> 
49	</div> 
50</div>