حصل خطأ عند معالجة القالب.
The following has evaluated to null or missing: ==> tab [in template "11099719610328#20119#434260" at line 6, column 74] ---- 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: ${tab} [in template "11099719610328#20119#434260" at line 6, column 72] ----
1<!-- Page Content -->
2<div class="container my-5">
3 <div class="d-flex align-item-center">
4 <h3 class="display-sm d-none">${.vars["reserved-article-title"].data}</h3>
5
6 <a class="me-auto btn-link link-back" href="/statistics-tabs?tab=${tab}&category=${category.categoryId}">
7 <@liferay.language key="back" />
8 </a>
9 </div>
10</div>
11
12<div class="container max-w-1400">
13 <#if (tableauUrl.getData())??>
14 ${tableauUrl.getData()}
15 </#if>
16</div>
17<!-- End of Page Content -->