fionix
Well-known member
Can someone explain to me what is wrong with the below code! I want to display the User Title Ladder in the Help page, but all the below code shows is "No items have been created yet" is there a simple solution to this?
Code:
<xf:if is="$user-title-ladder is not empty">
<div class="block">
<div class="block-container">
<ol class="block-body">
<xf:foreach loop="$user-title-ladder" value="$user-title-ladder">
<li class="block-row block-row--separated">
<div class="contentRow">
<span class="contentRow-figure contentRow-figure--text contentRow-figure--fixedSmall">{$user-title-ladder.user-title-ladder_points}</span>
<div class="contentRow-main">
<h2 class="contentRow-header">{$user-title-ladder.title}</h2>
<div class="contentRow-minor">{$user-title-ladder.description|raw}</div>
</div>
</div>
</li>
</xf:foreach>
</ol>
</div>
</div>
<xf:else />
<div class="blockMessage">{{ phrase('no_items_have_been_created_yet') }}</div>
</xf:if>