User Management
show_add_form = !show_add_form}> {#if show_add_form}
Cancel {:else}
Add User {/if}
Search Users
e.key === 'Enter' && load_users()} />
{#if loading}
⏳
{:else} Go {/if}
Scope
All (Current + Global)
Account Only
Global Only
Status
All
Enabled
Disabled
{#if loading}
{:else if user_li.length === 0}
No Users Found
Try adjusting your search or scope filters.
{:else}
Directory Results
{user_li.length} found
{#each user_li as user}
{user.username}
{user.name || 'No Display Name'}
{#if user.super}
Super
{:else if user.manager}
Manager
{/if} {#if !user.account_id && !user.account_id_random}
Global
{:else}
Account
{/if}
{user.email || '--'}
{user.user_id_random}
Manage User
{/each}
{/if}