{#if loadError}
{loadError}
{/if} {#if error}
{error}
{/if} {#if showAdd}
{#if ($allDepts ?? []).length > 0}
Departments
{#each $allDepts ?? [] as d} {/each}
{/if}
{/if} {#if loading}
Loading…
{:else if users.length === 0}
No users yet
{:else}
{#each users as u (u.id)} {#if editID === u.id} {:else} {/if} {/each}
Username Role Departments
{u.username} {#if u.id === me}you{/if} {#if ($allDepts ?? []).length > 0}
{#each $allDepts ?? [] as d} {/each}
{/if}
{u.username} {#if u.id === me} you {/if} {roleLabel(u.role)} {deptNamesFor(u.department_ids || [])}
{#if u.id !== me} {/if}
{/if}