2019-10-25 10:46:37 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2020-01-03 12:13:22 -05:00
|
|
|
<style>
|
|
|
|
.footer { font-size:small; color:#666;}
|
|
|
|
</style>
|
2023-03-27 12:05:51 -04:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
2019-10-25 10:46:37 -04:00
|
|
|
<title>{{.Subject}}</title>
|
|
|
|
</head>
|
|
|
|
|
2023-03-03 09:43:30 -05:00
|
|
|
{{$repo_url := printf "<a href='%s'>%s</a>" (Escape .Issue.Repo.HTMLURL) (Escape .Issue.Repo.FullName)}}
|
2022-02-11 00:02:04 -05:00
|
|
|
{{$link := printf "<a href='%s'>#%d</a>" (Escape .Link) .Issue.Index}}
|
2019-10-25 10:46:37 -04:00
|
|
|
<body>
|
2021-06-23 08:33:21 -04:00
|
|
|
<p>
|
|
|
|
{{if .IsPull}}
|
2022-06-27 16:58:46 -04:00
|
|
|
{{.locale.Tr "mail.issue_assigned.pull" .Doer.Name $link $repo_url | Str2html}}
|
2021-06-23 08:33:21 -04:00
|
|
|
{{else}}
|
2022-06-27 16:58:46 -04:00
|
|
|
{{.locale.Tr "mail.issue_assigned.issue" .Doer.Name $link $repo_url | Str2html}}
|
2021-06-23 08:33:21 -04:00
|
|
|
{{end}}
|
|
|
|
</p>
|
2020-01-03 12:13:22 -05:00
|
|
|
<div class="footer">
|
2021-04-10 23:46:37 -04:00
|
|
|
<p>
|
|
|
|
---
|
|
|
|
<br>
|
2022-06-27 16:58:46 -04:00
|
|
|
<a href="{{.Link}}">{{.locale.Tr "mail.view_it_on" AppName}}</a>.
|
2021-04-10 23:46:37 -04:00
|
|
|
</p>
|
2020-01-03 12:13:22 -05:00
|
|
|
</div>
|
2019-10-25 10:46:37 -04:00
|
|
|
</body>
|
|
|
|
</html>
|