Roles: admin — full access · ticketing — participants, tickets, import · staffing — volunteers, shifts, departments · colead — manage assigned departments only · gatekeeper — check-in only

{#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 additional users

The admin account was created at setup. Add users above to delegate access.

{: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}