9 lines
588 B
Cheetah
9 lines
588 B
Cheetah
{{define "pill"}}{{template "chip" (dict "label" "Read-only" "tone" "down")}}{{end}}
|
|
{{define "title"}}{{.InstanceName}} is now read-only{{end}}
|
|
{{define "body"}}
|
|
{{template "lead" (printf "%s's Free licence has expired." .InstanceName)}}
|
|
{{template "p" "Your servers and monitors keep running and your agents keep their keys, but changes are disabled."}}
|
|
{{template "button" (dict "label" "Renew now" "url" .PortalURL)}}
|
|
{{if not .DeleteOn.IsZero}}{{template "p" (printf "If it is not renewed, the instance and everything in it will be deleted on %s." (date .DeleteOn))}}{{end}}
|
|
{{end}}
|