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