Errorea gertatu da txantiloia prozesatzerakoan.
The following has evaluated to null or missing:
==> liferay_aui  [in template "20116#20152#35301" at line 22, column 19]

----
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: @liferay_aui.script use="aui-base,aui...  [in template "20116#20152#35301" at line 22, column 17]
----
1<div class="chc-detalle"> 
2	${contenidoInicial.getData()} 
3	 
4	<#assign notabs=0/> 
5	<#assign portlet_id=random.nextInt()/> 
6	 
7	<#if TituloToggler??> 
8		<#if TituloToggler.getSiblings()?has_content> 
9			<div class="toggler_chc toggler_chc${portlet_id}"> 
10			<#list TituloToggler.getSiblings() as cur_tituloToggler> 
11			   <#if cur_tituloToggler.getData()?has_content > 
12		    		<div class="header toggler-header toggler-header-collapsed"> 
13						    <div> 
14		                ${cur_tituloToggler.getData()} 
15							  </div> 
16						</div> 
17		    		<div class="content toggler-content toggler-content-collapsed">${cur_tituloToggler.textoToggler.getData()}</div> 
18		       </#if> 
19			</#list> 
20			</div> 
21		</#if> 
22		<@liferay_aui.script use="aui-base,aui-toggler"> 
23		        var A = AUI(); 
24		        if(A.one('.toggler_chc${portlet_id}')) 
25
26		        
27		    		var toggler = new A.TogglerDelegate( 
28
29		        			animated: true, 
30		                    closeAllOnExpand: true, 
31		                    container: '.toggler_chc${portlet_id}', 
32		                    content: '.content', 
33		                    expanded: false, 
34		                    header: '.header', 
35		                    transition: { 
36		                        duration: 0.2, 
37		                        easing: 'cubic-bezier(0, 0.1, 0, 1)' 
38
39		    			}); 
40
41		</@liferay_aui.script> 
42 
43	</#if> 
44	 
45	<#if tituloTab.getData()?? &&  tituloTab.getData()?has_content> 
46	    <div id="tabs"> 
47	        <#if tituloTab.getSiblings()?has_content> 
48	             <ul class="nav nav-tabs"> 
49	        	<#list tituloTab.getSiblings() as cur_tituloTab> 
50	        		<#if cur_tituloTab.getData()?has_content> 
51	        		    <li><a href="#tab-${cur_tituloTab?index}">${cur_tituloTab.getData()}</a></li> 
52	        		<#else> 
53	                     <#assign notabs=1/> 
54	                </#if> 
55	        	</#list> 
56	        	</ul> 
57	        	 
58	        	<#if notabs==0> 
59	              <div class="contenido-tab"> 
60	                <#list tituloTab.getSiblings() as cur_tituloTab2> 
61	                    <#if cur_tituloTab2.getData()?has_content> 
62	                        <div id="tab-${cur_tituloTab2?index}" > 
63	                           ${cur_tituloTab2.textoTab.getData()} 
64	                         </div> 
65	                  	</#if> 
66	                </#list> 
67	              </div> 
68	            </#if> 
69	    	</#if>        
70	    </div> 
71	     
72	    <script> 
73			YUI().use( 
74	          'aui-tabview', 
75	          function(Y) { 
76	            new Y.TabView( 
77
78	                srcNode: '#tabs' 
79
80	            ).render(); 
81
82	       ); 
83		</script> 
84	</#if> 
85	 
86	${contenidoFinal.getData()} 
87</div>