Files
Atay-Makhzan/templates/mail/issue/default.tmpl
T

92 lines
3.3 KiB
Handlebars
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>{{.Subject}}</title>
2020-01-03 12:13:22 -05:00
<style>
blockquote { padding-left: 1em; margin: 1em 0; border-left: 1px solid grey; color: #777}
2020-01-03 12:13:22 -05: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}}
</style>
2020-01-03 12:13:22 -05:00
</head>
<body>
2021-06-23 14:33:21 +02:00
{{if .IsMention}}<p>{{.i18n.Tr "mail.issue.x_mentioned_you" .Doer.Name | Str2html}}</p>{{end}}
{{if eq .ActionName "push"}}
<p>
{{if .Comment.IsForcePush}}
2021-06-23 14:33:21 +02:00
{{$oldCommitUrl := printf "%s%s/%s/commit/%s" AppUrl .Comment.Issue.PullRequest.BaseRepo.OwnerName .Comment.Issue.PullRequest.BaseRepo.Name .Comment.OldCommit}}
{{$oldShortSha := ShortSha .Comment.OldCommit}}
{{$oldCommitLink := printf "<a href='%[1]s'><b>%[2]s</b></a>" $oldCommitUrl $oldShortSha}}
{{$newCommitUrl := printf "%s%s/%s/commit/%s" AppUrl .Comment.Issue.PullRequest.BaseRepo.OwnerName .Comment.Issue.PullRequest.BaseRepo.Name .Comment.NewCommit}}
{{$newShortSha := ShortSha .Comment.NewCommit}}
{{$newCommitLink := printf "<a href='%[1]s'><b>%[2]s</b></a>" $newCommitUrl $newShortSha}}
{{.i18n.Tr "mail.issue.action.force_push" .Doer.Name .Comment.Issue.PullRequest.HeadBranch $oldCommitLink $newCommitLink | Str2html}}
{{else}}
2021-08-09 20:08:51 +02:00
{{.i18n.Tr (TrN .i18n.Lang (len .Comment.Commits) "mail.issue.action.push_1" "mail.issue.action.push_n") .Doer.Name .Comment.Issue.PullRequest.HeadBranch (len .Comment.Commits) | Str2html}}
{{end}}
</p>
{{end}}
<p>
2019-12-31 14:30:46 -05:00
{{if eq .ActionName "close"}}
2021-06-23 14:33:21 +02:00
{{.i18n.Tr "mail.issue.action.close" .Doer.Name .Issue.Index | Str2html}}
2019-12-31 14:30:46 -05:00
{{else if eq .ActionName "reopen"}}
2021-06-23 14:33:21 +02:00
{{.i18n.Tr "mail.issue.action.reopen" .Doer.Name .Issue.Index | Str2html}}
2020-01-03 12:13:22 -05:00
{{else if eq .ActionName "merge"}}
2021-06-23 14:33:21 +02:00
{{.i18n.Tr "mail.issue.action.merge" .Doer.Name .Issue.Index .Issue.PullRequest.BaseBranch | Str2html}}
2019-12-31 14:30:46 -05:00
{{else if eq .ActionName "approve"}}
2021-06-23 14:33:21 +02:00
{{.i18n.Tr "mail.issue.action.approve" .Doer.Name | Str2html}}
2019-12-31 14:30:46 -05:00
{{else if eq .ActionName "reject"}}
2021-06-23 14:33:21 +02:00
{{.i18n.Tr "mail.issue.action.reject" .Doer.Name | Str2html}}
2019-12-31 14:30:46 -05:00
{{else if eq .ActionName "review"}}
2021-06-23 14:33:21 +02:00
{{.i18n.Tr "mail.issue.action.review" .Doer.Name | Str2html}}
2021-02-12 01:32:25 +08:00
{{else if eq .ActionName "review_dismissed"}}
2021-06-23 14:33:21 +02:00
{{.i18n.Tr "mail.issue.action.review_dismissed" .Doer.Name .Comment.Review.Reviewer.Name | Str2html}}
{{else if eq .ActionName "ready_for_review"}}
2021-06-23 14:33:21 +02:00
{{.i18n.Tr "mail.issue.action.ready_for_review" .Doer.Name | Str2html}}
2019-12-31 14:30:46 -05:00
{{end}}
{{- if eq .Body ""}}
{{if eq .ActionName "new"}}
2021-06-23 14:33:21 +02:00
{{.i18n.Tr "mail.issue.action.new" .Doer.Name .Issue.Index | Str2html}}
{{end}}
{{else}}
{{.Body | Str2html}}
{{end -}}
{{- range .ReviewComments}}
2019-12-31 14:30:46 -05:00
<hr>
2021-06-23 14:33:21 +02:00
{{.i18n.Tr "mail.issue.in_tree_path" .TreePath}}
<div class="review">
<pre>{{.Patch}}</pre>
<div>{{.RenderedContent | Safe}}</div>
</div>
{{end -}}
{{if eq .ActionName "push"}}
<ul>
2021-08-09 20:08:51 +02:00
{{range .Comment.Commits}}
<li>
<a href="{{AppUrl}}{{$.Comment.Issue.PullRequest.BaseRepo.OwnerName}}/{{$.Comment.Issue.PullRequest.BaseRepo.Name}}/commit/{{.ID}}">
{{ShortSha .ID.String}}
</a> - {{.Summary}}
</li>
{{end}}
</ul>
{{end}}
</p>
2020-01-03 12:13:22 -05:00
<div class="footer">
<p>
---
<br>
2021-06-23 14:33:21 +02:00
<a href="{{.Link}}">{{.i18n.Tr "mail.view_it_on" AppName}}</a>.
</p>
2020-01-03 12:13:22 -05:00
</div>
</body>
</html>