menu_manage_banned_users

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "menu_manage_banned_users".
... in dropdown.naml
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
<macro name="menu_manage_banned_users" requires="node">
    <n.if.is_in_command name="dropdown">
        <then>
            dropdown.add('manageBannedUsers', '<n.javascript_string_encode.manage_banned_users_link/>', 'display:none');
        </then>
        <else>
            <n.set_local_node.this_node/>
            <n.if.both condition1="[n.local_node.is_root/]" condition2="[n.visitor.can_manage_banned_users/]">
                <then>
                    NabbleDropdown.show('manageBannedUsers');
                </then>
            </n.if.both>
        </else>
    </n.if.is_in_command>
</macro>