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