Projects — FPMB

Projects

{#if loading}

Loading...

{:else if error}

{error}

{:else if projects.length === 0}

No projects yet

Create your first project to get started.

{:else}
{#each projects as project (project.id)}
{project.name} {statusLabel(project)}
{#if project.team_name}

{project.team_name}

{/if}

{project.description || "No description"}

Updated {new Date(project.updated_at).toLocaleDateString( "en-US", { month: "2-digit", day: "2-digit", year: "numeric" }, )}
{#if !project.team_name} {/if}
{/each}
{/if}
{#if showModal} {/if}