Amaury
Well-known member
I've added a rank here, but for some reason, it's displaying both Administrator and Moderator for administrators:
In addition, for regular users, I want it to display the user titles from the user title ladder; for banned users, I want it to display Banned. What are the conditionals to use here?
This is my code so far in the member_view template:
In addition, for regular users, I want it to display the user titles from the user title ladder; for banned users, I want it to display Banned. What are the conditionals to use here?
This is my code so far in the member_view template:
Code:
<dl><dt>{xen:phrase khflare_rank}:</dt>
<dd><xen:if is="{$user.is_admin}">{xen:phrase administrator}</xen:if>
<xen:if is="{$user.is_moderator}">{xen:phrase moderator}</xen:if></dd></dl>