Implemented An improvement to the "Team_forum_list" template

Freelancer

Active Member
When there is no forum, the entire page is empty. That could confuse users who might think it is a loading error... I would suggest to replace this part at the bottom:
Code:
<xen:if is="{$renderedNodes}"><xen:include template="node_list" /></xen:if>
With this snippet:
Code:
<xen:if is="{$renderedNodes}">
    <xen:include template="node_list" />
<xen:else />
    <p>No group forums have been added yet.</p>
</xen:if>
While "No group forums have been added yet." of course should by a phrase.
 
Back
Top