ARIZONA NATIONALS SPECIAL EVENT
An error occurred while processing the template.
The following has evaluated to null or missing: ==> webAddress [in template "EVENT" at line 58, column 138] ---- Tip: If the failing expression is known to be 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: ${webAddress.getData()!""} [in template "EVENT" at line 58, column 136] - Reached through: #include "${templatesPath}/EVENT" [in template "20116#20152#SHOW" at line 1, column 1] ----
1<#include "${templatesPath}/EVENT" />
2<div class="b-event__body b-zoom-container">
3 <#if body?? && body.getData() != "">
4 <h2 class="b-h2"><@liferay.language key="translations.text.event-details"/></h2>
5 <p>${body.getData()}</p>
6 </#if>
7
8 <#if startTime?? && startTime.getData() != "">
9 <h2 class="b-h2"><@liferay.language key="translations.text.startTime"/></h2>
10 <p>${startTime.getData()}</p>
11 </#if>
12
13 <#if judge?? && judge.getData() != "">
14 <h2 class="b-h2"><@liferay.language key="translations.text.judge"/></h2>
15 <p>${judge.getData()}</p>
16 </#if>
17
18<#--<#if classes.getSiblings()?has_content>
19 <h2 class="b-h2"><@liferay.language key="translations.text.classes"/></h2>
20 <ul>
21 <#list classes.getSiblings() as cur_item>
22 <li>${cur_item.getChild("class").getData()}</li>
23 </#list>
24 </ul>
25</#if>
26
27<#if divisions.getSiblings()?has_content>
28<h2 class="b-h2"><@liferay.language key="translations.text.divisions"/></h2>
29 <ul>
30 <#list divisions.getSiblings() as cur_item>
31 <li>${cur_item.getChild("division").getData()}</li>
32 </#list>
33 </ul>
34</#if>
35
36<#if levels.getSiblings()?has_content>
37<h2 class="b-h2"><@liferay.language key="translations.text.level"/></h2>
38 <ul>
39 <#list levels.getSiblings() as cur_item>
40 <li>${cur_item.getChild("level").getData()}</li>
41 </#list>
42 </ul>
43</#if>-->
44
45 <#if notes?? && notes.getData() != "">
46 <h2 class="b-h2"><@liferay.language key="translations.text.notes"/></h2>
47 <p>${notes.getData()}</p>
48 </#if>
49</div>