diff options
-rw-r--r-- | templates/mail/issue/default.tmpl | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/templates/mail/issue/default.tmpl b/templates/mail/issue/default.tmpl index 223ff7ffdc..71291c61bb 100644 --- a/templates/mail/issue/default.tmpl +++ b/templates/mail/issue/default.tmpl @@ -12,22 +12,30 @@ </head> <body> - {{if .IsMention}}<p>@{{.Doer.Name}} mentioned you:</p>{{end}} + {{if .IsMention}}<p><b>@{{.Doer.Name}}</b> mentioned you:</p>{{end}} <p> + {{if eq .ActionName "close"}} + Closed #{{.Issue.Index}}. + {{else if eq .ActionName "reopen"}} + Reopened #{{.Issue.Index}}. + {{else if eq .ActionName "approve"}} + <b>@{{.Doer.Name}}</b> approved this pull request. + {{else if eq .ActionName "reject"}} + <b>@{{.Doer.Name}}</b> requested changes on this pull request. + {{else if eq .ActionName "review"}} + <b>@{{.Doer.Name}}</b> commented on this pull request. + {{end}} + {{- if eq .Body ""}} {{if eq .ActionName "new"}} Created #{{.Issue.Index}}. - {{else if eq .ActionName "close"}} - Closed #{{.Issue.Index}}. - {{else if eq .ActionName "reopen"}} - Reopened #{{.Issue.Index}}. - {{else if ne .ReviewComments}} - Empty comment on #{{.Issue.Index}}. {{end}} {{else}} {{.Body | Str2html}} {{end -}} {{- range .ReviewComments}} + <hr> + In {{.TreePath}}: <div class="review"> <pre>{{.Patch}}</pre> <div>{{.RenderedContent | Safe}}</div> |