Files

27 lines
660 B
Handlebars
Raw Permalink Normal View History

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>{{.Subject}}</title>
</head>
2024-02-25 18:45:56 +08:00
{{$repo_url := HTMLFormat "<a href='%s'>%s</a>" .Issue.Repo.HTMLURL .Issue.Repo.FullName}}
{{$link := HTMLFormat "<a href='%s'>#%d</a>" .Link .Issue.Index}}
<body>
2021-06-23 14:33:21 +02:00
<p>
{{if .IsPull}}
2024-02-25 18:45:56 +08:00
{{.locale.Tr "mail.issue_assigned.pull" .Doer.Name $link $repo_url}}
2021-06-23 14:33:21 +02:00
{{else}}
2024-02-25 18:45:56 +08:00
{{.locale.Tr "mail.issue_assigned.issue" .Doer.Name $link $repo_url}}
2021-06-23 14:33:21 +02:00
{{end}}
</p>
2025-09-05 11:20:42 +08:00
<div style="font-size:small; color:#666;">
<p>
---
<br>
2022-06-27 22:58:46 +02:00
<a href="{{.Link}}">{{.locale.Tr "mail.view_it_on" AppName}}</a>.
</p>
2020-01-03 12:13:22 -05:00
</div>
</body>
</html>