{i18n.t("game.report.section.approaching_groups.title")}

{#if report === null}

{i18n.t("game.report.loading")}

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

{i18n.t("game.report.section.approaching_groups.empty")}

{:else} {#each rows as r, i (i)} {/each}
{i18n.t("game.report.section.approaching_groups.column.from")} {i18n.t("game.report.section.approaching_groups.column.to")} {i18n.t("game.report.section.approaching_groups.column.distance")} {i18n.t("game.report.section.approaching_groups.column.speed")} {i18n.t("game.report.section.approaching_groups.column.mass")}
{planetLabel(r.origin, planets)} {planetLabel(r.destination, planets)} {formatFloat(r.distance)} {formatFloat(r.speed)} {formatFloat(r.mass)}
{/if}