diff --git a/templates/user/invite-instructions.tmpl b/templates/user/invite-instructions.tmpl index a32eac0..e31e778 100644 --- a/templates/user/invite-instructions.tmpl +++ b/templates/user/invite-instructions.tmpl @@ -1,32 +1,32 @@ {{define "invite-instructions"}} {{template "header" .}}

Invite to {{.SiteName}}

{{ if .Expired }}

This invite link is expired.

{{ else }}

Copy the link below and send it to anyone that you want to join {{ .SiteName }}. You could paste it into an email, instant message, text message, or write it down on paper. Anyone who navigates to this special page will be able to create an account.

{{ if gt .Invite.MaxUses.Int64 0 }} {{if eq .Invite.MaxUses.Int64 1}}Only one user{{else}}Up to {{.Invite.MaxUses.Int64}} users{{end}} can sign up with this link. {{if gt .Invite.Uses 0}}So far, {{.Invite.Uses}} {{pluralize "person has" "people have" .Invite.Uses}} used it.{{end}} {{if .Invite.Expires}}It expires on {{.Invite.ExpiresFriendly}}.{{end}} {{ else }} It can be used as many times as you like{{if .Invite.Expires}} before {{.Invite.ExpiresFriendly}}, when it expires{{end}}. {{ end }}

{{ end }}
{{template "footer" .}} {{end}}