{{ define "title" }}Custom Races{{ end }} {{ define "custom-race-table" }} {{ $writeAccess := WriteAccess }}
{{ if $writeAccess }} {{ end }} {{ range $index, $race := . }} {{ if $writeAccess }} {{ end }} {{ end }}
Details CreatedActions
{{ if $race.Starred }} {{ else }} {{ end }} {{ if $race.Loop }} {{ else }} {{ end }} {{ template "race-card" $race }}
Name: {{ $race.Name }}
{{ timeFormat $race.Created }}
{{ dateFormat $race.Created }}
Start Race
Use as Template Edit Race Delete
{{ end }} {{ define "content" }}

Custom Races

Create a new Custom Race

Custom races are fully configurable events, once you have created a custom race you can Star it or add it to the automatic race loop. You can use a custom race as a template for a new race, which will create a copy of the custom race, or edit the custom race directly. Custom races can be run quickly on the server using the start race button.

Scheduled

{{ if gt (len .Scheduled) 0 }} {{ template "custom-race-table" .Scheduled }} {{ else }}

You haven't Scheduled any races!

{{ end }}

Starred

{{ if gt (len .Starred) 0 }} {{ template "custom-race-table" .Starred }} {{ else }}

You haven't starred any Custom Races yet. Star some using the table below!

{{ end }}

Auto Loop

{{ if gt (len .Loop) 0 }} {{ template "custom-race-table" .Loop }}

These custom races will be looped on the server whilst it is inactive!

{{ else }}

No custom races have been added to the auto loop list yet! Use the play icon to add a race to the loop. Any added races will loop on the server whilst it is inactive!

{{ end }}

Recent

{{ if gt (len .Recent) 0 }} {{ template "custom-race-table" .Recent }} {{ else }}

We couldn't find any recent races. Perhaps you should create one now?

{{ end }} {{ end }}