Wrenn Admin — Users

Users

All registered users, team memberships, and account status.

{#if !loading && !error}
{totalUsers} user{totalUsers !== 1 ? 's' : ''}
{/if}
{#if error}
{error}. Try refreshing the page.
{/if}
Name
Email
Teams
Owned
Role
Joined
Status
{#if loading && users.length === 0}
Loading users...
{:else if users.length === 0}

No users yet

Users appear here when they sign up.

{:else} {#each users as user, i (user.id)}
{#if user.is_active}
{/if}
{user.name || '\u2014'} {#if user.is_admin} Admin {/if}
{user.id}
{user.email}
{user.teams_joined}
{user.teams_owned}
{user.is_admin ? 'Admin' : 'User'}
{formatDate(user.created_at)}
{/each} {/if}
{#if totalPages > 1}
Page {currentPage} of {totalPages}
{/if}