mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 08:47:40 -04:00
3f318a4bad
- Regression from https://github.com/go-gitea/gitea/pull/22294 Error: ![image](https://user-images.githubusercontent.com/25481501/219115669-52b98fdb-bcbb-430d-a205-beb305c37e85.png)
16 lines
804 B
Handlebars
16 lines
804 B
Handlebars
<div class="ui detail icon button">
|
|
{{if .verification.Verified}}
|
|
<div title="{{if eq .verification.TrustStatus "trusted"}}{{else if eq .verification.TrustStatus "untrusted"}}{{$.root.locale.Tr "repo.commits.signed_by_untrusted_user"}}: {{else}}{{$.root.locale.Tr "repo.commits.signed_by_untrusted_user_unmatched"}}: {{end}}{{.verification.Reason}}">
|
|
{{if ne .verification.SigningUser.ID 0}}
|
|
{{svg "gitea-lock"}}
|
|
{{avatar $.root.Context .verification.SigningUser 28 "signature"}}
|
|
{{else}}
|
|
<span title="{{$.root.locale.Tr "gpg.default_key"}}">{{svg "gitea-lock-cog"}}</span>
|
|
{{avatarByEmail $.root.Context .verification.SigningEmail "" 28 "signature"}}
|
|
{{end}}
|
|
</div>
|
|
{{else}}
|
|
<span title="{{$.root.locale.Tr .verification.Reason}}">{{svg "gitea-unlock"}}</span>
|
|
{{end}}
|
|
</div>
|