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

21 lines
784 B
HTML
Raw Permalink 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;">Nové uplatnění odměny čeká na vyřízení</h1>
<p>Dobrý den,</p>
<p>uživatel {{if .UserFull}}<strong>{{.UserFull}}</strong>{{else}}#{{.UserID}}{{end}} ({{.UserEmail}}) uplatnil odměnu, která vyžaduje ruční vyřízení:</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 .ManageURL}}
<p>
<a href="{{.ManageURL}}" class="btn">Otevřít administraci Odměny</a>
</p>
{{end}}
<p>Děkujeme,<br/>{{.ClubName}}</p>
</div>
{{end}}