2020-06-03 00:22:26 +00:00
|
|
|
<div class="ui detail icon button">
|
|
|
|
{{if .verification.Verified}}
|
2022-06-27 20:58:46 +00:00
|
|
|
<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}}">
|
2020-06-03 00:22:26 +00:00
|
|
|
{{if ne .verification.SigningUser.ID 0}}
|
2020-09-11 20:19:00 +00:00
|
|
|
{{svg "gitea-lock"}}
|
2023-02-16 01:37:11 +00:00
|
|
|
{{avatar $.root.Context .verification.SigningUser 28 "signature"}}
|
2020-06-03 00:22:26 +00:00
|
|
|
{{else}}
|
2022-06-27 20:58:46 +00:00
|
|
|
<span title="{{$.root.locale.Tr "gpg.default_key"}}">{{svg "gitea-lock-cog"}}</span>
|
2023-02-16 01:37:11 +00:00
|
|
|
{{avatarByEmail $.root.Context .verification.SigningEmail "" 28 "signature"}}
|
2020-06-03 00:22:26 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{else}}
|
2022-06-27 20:58:46 +00:00
|
|
|
<span title="{{$.root.locale.Tr .verification.Reason}}">{{svg "gitea-unlock"}}</span>
|
2020-06-03 00:22:26 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|