Files
MyClub/templates/emails/reward_redeemed_user.html
T
Tomas Dvorak 087f30e82c dev day #80
2025-11-02 21:31:00 +01:00

21 lines
815 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{{define "content"}}
<div style="max-width:600px;margin:0 auto;">
<h1 style="margin-top:0;">Potvrzení uplatnění odměny</h1>
<p>Dobrý den{{if .UserFirstName}}, {{.UserFirstName}}{{end}},</p>
<p>potvrzujeme, že jste uplatnili odměnu:</p>
<ul>
<li><strong>Název:</strong> {{.RewardName}}</li>
<li><strong>Typ:</strong> {{.RewardType}}</li>
<li><strong>Body:</strong> {{.Points}}</li>
<li><strong>Status:</strong> {{.Status}}</li>
<li><strong>Čas:</strong> {{.RedeemedAt}}</li>
</ul>
{{if eq .Status "pending"}}
<p>Vaše odměna čeká na vyřízení správcem webu. O změně stavu budete informováni emailem.</p>
{{else}}
<p>Odměna byla uplatněna okamžitě. Děkujeme za účast!</p>
{{end}}
<p>S přátelským pozdravem,<br/>{{.ClubName}}</p>
</div>
{{end}}