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