2019-11-07 16:34:28 +03:00
<!DOCTYPE html>
<html>
<head>
2023-03-27 19:05:51 +03:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
2019-11-07 16:34:28 +03:00
<title> {{ .Subject }} </title>
2020-01-03 20:13:22 +03:00
2019-11-15 15:59:21 +03:00
<style>
2020-01-28 01:35:34 +03:00
blockquote { padding-left: 1em; margin: 1em 0; border-left: 1px solid grey; color: #777}
2020-01-03 20:13:22 +03:00
.footer { font-size:small; color:#666;}
{{ if .ReviewComments }}
.review { padding-left: 1em; margin: 1em 0; }
.review > pre { padding: 1em; border-left: 1px solid grey; }
{{ end }}
2019-11-15 15:59:21 +03:00
</style>
2020-01-03 20:13:22 +03:00
2019-11-07 16:34:28 +03:00
</head>
<body>
2024-02-22 21:05:47 +03:00
{{ if .IsMention }} <p> {{ .locale .Tr "mail.issue.x_mentioned_you" .Doer .Name }} </p> {{ end }}
2020-06-12 11:56:31 +03:00
{{ if eq .ActionName "push" }}
2020-05-20 15:47:24 +03:00
<p>
{{ if .Comment .IsForcePush }}
2023-03-03 17:43:30 +03:00
{{ $ oldCommitUrl : = printf "%s/commit/%s" .Comment .Issue .PullRequest .BaseRepo .HTMLURL .Comment .OldCommit }}
2021-06-23 15:33:21 +03:00
{{ $ oldShortSha : = ShortSha .Comment .OldCommit }}
2024-02-25 13:45:56 +03:00
{{ $ oldCommitLink : = HTMLFormat "<a href='%[1]s'><b>%[2]s</b></a>" $ oldCommitUrl $ oldShortSha }}
2021-06-23 15:33:21 +03:00
2023-03-03 17:43:30 +03:00
{{ $ newCommitUrl : = printf "%s/commit/%s" .Comment .Issue .PullRequest .BaseRepo .HTMLURL .Comment .NewCommit }}
2021-06-23 15:33:21 +03:00
{{ $ newShortSha : = ShortSha .Comment .NewCommit }}
2024-02-25 13:45:56 +03:00
{{ $ newCommitLink : = HTMLFormat "<a href='%[1]s'><b>%[2]s</b></a>" $ newCommitUrl $ newShortSha }}
2021-06-23 15:33:21 +03:00
2024-02-25 13:45:56 +03:00
{{ .locale .Tr "mail.issue.action.force_push" .Doer .Name .Comment .Issue .PullRequest .HeadBranch $ oldCommitLink $ newCommitLink }}
2020-05-20 15:47:24 +03:00
{{ else }}
2024-02-22 21:05:47 +03:00
{{ .locale .TrN ( len .Comment .Commits ) "mail.issue.action.push_1" "mail.issue.action.push_n" .Doer .Name .Comment .Issue .PullRequest .HeadBranch ( len .Comment .Commits ) }}
2020-05-20 15:47:24 +03:00
{{ end }}
</p>
{{ end }}
2019-11-07 16:34:28 +03:00
<p>
2019-12-31 22:30:46 +03:00
{{ if eq .ActionName "close" }}
2024-02-25 17:02:20 +03:00
{{ .locale .Tr "mail.issue.action.close" .Doer .Name .Issue .Index }}
2019-12-31 22:30:46 +03:00
{{ else if eq .ActionName "reopen" }}
2024-02-25 17:02:20 +03:00
{{ .locale .Tr "mail.issue.action.reopen" .Doer .Name .Issue .Index }}
2020-01-03 20:13:22 +03:00
{{ else if eq .ActionName "merge" }}
2024-02-25 17:02:20 +03:00
{{ .locale .Tr "mail.issue.action.merge" .Doer .Name .Issue .Index .Issue .PullRequest .BaseBranch }}
2019-12-31 22:30:46 +03:00
{{ else if eq .ActionName "approve" }}
2024-02-25 17:02:20 +03:00
{{ .locale .Tr "mail.issue.action.approve" .Doer .Name }}
2019-12-31 22:30:46 +03:00
{{ else if eq .ActionName "reject" }}
2024-02-25 17:02:20 +03:00
{{ .locale .Tr "mail.issue.action.reject" .Doer .Name }}
2019-12-31 22:30:46 +03:00
{{ else if eq .ActionName "review" }}
2024-02-25 17:02:20 +03:00
{{ .locale .Tr "mail.issue.action.review" .Doer .Name }}
2021-02-11 20:32:25 +03:00
{{ else if eq .ActionName "review_dismissed" }}
2024-02-25 17:02:20 +03:00
{{ .locale .Tr "mail.issue.action.review_dismissed" .Doer .Name .Comment .Review .Reviewer .Name }}
2021-06-23 07:14:22 +03:00
{{ else if eq .ActionName "ready_for_review" }}
2024-02-25 17:02:20 +03:00
{{ .locale .Tr "mail.issue.action.ready_for_review" .Doer .Name }}
2019-12-31 22:30:46 +03:00
{{ end }}
2019-11-07 16:34:28 +03:00
{{ - if eq .Body "" }}
{{ if eq .ActionName "new" }}
2024-02-25 17:02:20 +03:00
{{ .locale .Tr "mail.issue.action.new" .Doer .Name .Issue .Index }}
2019-11-07 16:34:28 +03:00
{{ end }}
{{ else }}
2024-03-04 15:02:45 +03:00
{{ .Body }}
2019-11-07 16:34:28 +03:00
{{ end - }}
2019-11-15 15:59:21 +03:00
{{ - range .ReviewComments }}
2019-12-31 22:30:46 +03:00
<hr>
2022-06-27 23:58:46 +03:00
{{ $ .locale .Tr "mail.issue.in_tree_path" .TreePath }}
2019-11-15 15:59:21 +03:00
<div class="review">
<pre> {{ .Patch }} </pre>
2024-03-03 07:57:22 +03:00
<div> {{ .RenderedContent }} </div>
2019-11-15 15:59:21 +03:00
</div>
2020-05-20 15:47:24 +03:00
{{ end - }}
2020-06-12 11:56:31 +03:00
{{ if eq .ActionName "push" }}
2020-05-20 15:47:24 +03:00
<ul>
2021-08-09 21:08:51 +03:00
{{ range .Comment .Commits }}
2020-05-20 15:47:24 +03:00
<li>
2023-03-03 17:43:30 +03:00
<a href=" {{ $ .Comment .Issue .PullRequest .BaseRepo .HTMLURL }} /commit/ {{ .ID }} ">
2020-05-20 15:47:24 +03:00
{{ ShortSha .ID .String }}
</a> - {{ .Summary }}
</li>
{{ end }}
</ul>
{{ end }}
2019-11-07 16:34:28 +03:00
</p>
2020-01-03 20:13:22 +03:00
<div class="footer">
2019-11-07 16:34:28 +03:00
<p>
---
<br>
2023-01-16 23:58:01 +03:00
<a href=" {{ .Link }} "> {{ .locale .Tr "mail.view_it_on" AppName }} </a> {{ if .CanReply }} {{ .locale .Tr "mail.reply" }} {{ end }} .
2019-11-07 16:34:28 +03:00
</p>
2020-01-03 20:13:22 +03:00
</div>
2019-11-07 16:34:28 +03:00
</body>
</html>