From: mrsdizzie Date: Tue, 31 Dec 2019 19:30:46 +0000 (-0500) Subject: Update default issue template (#9568) X-Git-Tag: v1.11.0-rc1~46 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0989404d2ff1ac4aa0d82e05158f4481474b268e;p=gitea.git Update default issue template (#9568) Some small changes: * Include text if approve/comment/request changes on PR * List filename for review comments * Bold username when mentioned This will stop empty body messages when approving PR on gitea.com --- 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 @@ - {{if .IsMention}}

@{{.Doer.Name}} mentioned you:

{{end}} + {{if .IsMention}}

@{{.Doer.Name}} mentioned you:

{{end}}

+ {{if eq .ActionName "close"}} + Closed #{{.Issue.Index}}. + {{else if eq .ActionName "reopen"}} + Reopened #{{.Issue.Index}}. + {{else if eq .ActionName "approve"}} + @{{.Doer.Name}} approved this pull request. + {{else if eq .ActionName "reject"}} + @{{.Doer.Name}} requested changes on this pull request. + {{else if eq .ActionName "review"}} + @{{.Doer.Name}} 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}} +


+ In {{.TreePath}}:
{{.Patch}}
{{.RenderedContent | Safe}}