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

{#if report === null}

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

{:else}
{i18n.t("game.report.section.votes.mine")}
{formatVotes(report.myVotes)}
{i18n.t("game.report.section.votes.target")}
{#if report.myVoteFor === ""} {i18n.t("game.report.section.votes.target_none")} {:else} {report.myVoteFor} {/if}
{#if empty}

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

{:else}

{i18n.t("game.report.section.votes.received_header")}

{#each races as r (r.name)} {/each}
{i18n.t("game.report.section.votes.column.race")} {i18n.t("game.report.section.votes.column.votes")}
{r.name} {formatVotes(r.votesReceived)}
{/if} {/if}