{#if users === null || total === null}
{:else}
{$i18n.t('Members')} {total}
{#if onAdd}
{/if}
{#if search}
{/if} {#if users.length > 0}
{#each users as user, userIdx (user.id)}
user
{user.name}
{#if user?.is_active}
{/if}
{#if onRemove}
{/if}
{/each}
{#if total > 30} {/if} {:else}
{$i18n.t('No users were found.')}
{/if} {/if}