diff options
author | Norwin <noerw@users.noreply.github.com> | 2021-03-12 22:47:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-12 22:47:52 +0100 |
commit | 19bcd29c7e09dc96880af72c25297d9927db4244 (patch) | |
tree | abe8dd1599797b51dea348c333bbe1517cad0778 /templates/mail | |
parent | check if original author is set (#14971) (diff) | |
download | forgejo-19bcd29c7e09dc96880af72c25297d9927db4244.tar.xz forgejo-19bcd29c7e09dc96880af72c25297d9927db4244.zip |
fix release mail html template (#14975)
was missing an </a>
Diffstat (limited to 'templates/mail')
-rw-r--r-- | templates/mail/release.tmpl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/mail/release.tmpl b/templates/mail/release.tmpl index bb0eb17a56..04b8c3bf51 100644 --- a/templates/mail/release.tmpl +++ b/templates/mail/release.tmpl @@ -12,8 +12,10 @@ </head> <body> - <p><b>@{{.Release.Publisher.Name}}</b> released <a href="{{.Release.HTMLURL}}">{{.Release.TagName}}</a> - in <a href="{{AppUrl}}{{.Release.Repo.OwnerName}}/{{.Release.Repo.Name}}">{{.Release.Repo.FullName}} </p> + <p> + <b>@{{.Release.Publisher.Name}}</b> released <a href="{{.Release.HTMLURL}}">{{.Release.TagName}}</a> + in <a href="{{AppUrl}}{{.Release.Repo.OwnerName}}/{{.Release.Repo.Name}}">{{.Release.Repo.FullName}}</a> + </p> <h4>Title: {{.Release.Title}}</h4> <p> Note: <br> |