حصل خطأ عند معالجة القالب.
The following has evaluated to null or missing:
==> entry.getHref  [in template "11099719610328#20119#3633089" at line 25, column 19]

----
Tip: It's the step after the last dot that caused this error, not those before it.
----
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: ${entry.getHref()}  [in template "11099719610328#20119#3633089" at line 25, column 17]
----
1<#assign actionDropdownItems = sortDisplayContext.getActionDropdownItems() /> 
2 
3<div class="dropdown"> 
4    <button class="dl-btn dl-btn-outline border dropdown-toggle" type="button" id="dropdownMenuButtonSort" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> 
5			<img class="me-3" src="/o/resources/images/icons/sorting-up-down.svg" alt="sorting-up-down" /> 
6      <span><@liferay.language key="sort-by"/></span> 
7    </button> 
8    <div class="dropdown-menu" aria-labelledby="dropdownMenuButtonSort"> 
9			<#if actionDropdownItems?has_content> 
10	      <#list actionDropdownItems as curEntry> 
11				 
12    <a class="dropdown-item ${(entry.isSelected())?then('active', '')}" 
13       href="${curEntry.href}"> 
14        ${curEntry.label} 
15    </a> 
16</#list> 
17       </#if> 
18    </div> 
19</div> 
20 
21<#if entries?has_content> 
22	<#list entries as entry> 
23		${entry.isSelected()?string} 
24		${entry.getLanguageLabel()} 
25		${entry.getHref()} 
26	</#list> 
27</#if> 
لا توجد نتائج