{% if SETTINGS.display_name_format == 'fullname' %}
| {{room_user.first_name}} {{room_user.last_name}} |
{% endif %}
{{ room_user.user_name }}
|
{% if room_user.user_type == 1 %}
Admin
{% elseif room_user.user_type == 2 %}
Member
{% elseif room_user.user_type == 3 %}
Guest
{% elseif room_user.user_type == 4 %}
Moderator
{% endif %}
|
{% if room_user.id != USER.id and room_user.user_type!=1 and room_user.user_type == 2 and room_mod == 0 %}
{% endif %}
{% if (USER.user_type == 2 or USER.user_type == 4) and (room_user.user_type == 1 or room_user.user_type == 4) %}
{% else %}
{% if (room_user.id != USER.id and room_user.user_type!=1) and (room_user.id != created_by) %}
{% endif %}
{% endif %}
|
{% endif %}
{% endfor %}