Destinations
{#if $session.isAdmin}
{/if}
{#if !destinations || destinations.length === 0}
No destination found
{:else}
{#each destinations as destination}
{destination.name}
{#if $session.teamId === '0'}
Team {destination.teams[0].name}
{/if}
{destination.network}
{/each}
{/if}