{#if groups.length === 0}
No perteneces a ningún grupo permitido.
{:else}
Grupos
{#each groups as g}
{g.name ?? g.id}
(abiertas: {g.counts.open}, sin responsable: {g.counts.unassigned})
{#if previews[g.id]?.length}
Sin responsable (hasta 3):
{#each previews[g.id] as t}
#{t.display_code ?? t.id} — {t.description}
{#if t.due_date}
(vence: {t.due_date})
{/if}
{/each}
{/if}
{/each}
{/if}