Boards

Boards

{#if data.user} {/if}
{#if showCreate}
{#if error}
{error}
{/if}
{#if data.categories.length > 0}
{/if}
{/if} {#if data.categories.length > 0}
Filter: {#each data.categories as cat} {/each}
{/if} {#if filteredBoards.length === 0}

{filterCategoryId ? 'No boards in this category.' : 'No boards yet.'}

{#if data.user && !filterCategoryId}

Create your first board to get started.

{/if}
{:else}
{#each filteredBoards as board}

{board.title}

{#if board.category} {board.category.name} {/if}
{board._count.columns} columns {board.visibility === 'PUBLIC' ? 'Public' : 'Private'}
{#if board.members.length > 0}
{#each board.members.slice(0, 5) as member}
{member.user.name[0].toUpperCase()}
{/each} {#if board.members.length > 5}
+{board.members.length - 5}
{/if}
{/if}
{/each}
{/if}