@if (showCreate) {
@if (createError) {

{{ createError }}

}
} @if (loading) {
Loading bots…
} @else if (bots.length === 0) {

No bots yet

Create a bot to join tournaments and play automated games.

} @else {
@for (bot of bots; track bot.id) {
{{ bot.name.charAt(0).toUpperCase() }}
{{ bot.name }} Rating {{ bot.rating }} · Created {{ bot.createdAt | date:'MMM d, yyyy' }}
@if (revealedTokens[bot.id]) {
Token was just regenerated — the old one is now invalid. Keep this secret.
{{ revealedTokens[bot.id] }}
}
}
}