mirror of
https://github.com/go-gitea/gitea.git
synced 2026-09-11 00:10:38 -05:00
21 lines
555 B
Handlebars
21 lines
555 B
Handlebars
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{{template "mail/base/head" .Subject}}
|
|
</head>
|
|
|
|
{{$repo_url := HTMLFormat "<a href='%s'>%s</a>" .Issue.Repo.HTMLURL .Issue.Repo.FullName}}
|
|
{{$link := HTMLFormat "<a href='%s'>#%d</a>" .Link .Issue.Index}}
|
|
<body>
|
|
<p>
|
|
{{if .IsPull}}
|
|
{{.locale.Tr "mail.issue_assigned.pull" .Doer.Name $link $repo_url}}
|
|
{{else}}
|
|
{{.locale.Tr "mail.issue_assigned.issue" .Doer.Name $link $repo_url}}
|
|
{{end}}
|
|
</p>
|
|
{{if .CanReply}}<p>{{.locale.Tr "mail.reply_directly"}}.</p>{{end}}
|
|
{{template "mail/base/footer"}}
|
|
</body>
|
|
</html>
|