2020-06-03 00:22:26 +00:00
|
|
|
<div class="ui detail icon button">
|
|
|
|
{{if .verification.Verified}}
|
2023-09-24 20:31:58 +00:00
|
|
|
<div title="{{if eq .verification.TrustStatus "trusted"}}{{else if eq .verification.TrustStatus "untrusted"}}{{ctx.Locale.Tr "repo.commits.signed_by_untrusted_user"}}: {{else}}{{ctx.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"}}
|
2024-06-28 21:29:15 +00:00
|
|
|
{{ctx.AvatarUtils.Avatar .verification.SigningUser 16 "signature"}}
|
2020-06-03 00:22:26 +00:00
|
|
|
{{else}}
|
2023-09-24 20:31:58 +00:00
|
|
|
<span title="{{ctx.Locale.Tr "gpg.default_key"}}">{{svg "gitea-lock-cog"}}</span>
|
2024-06-28 21:29:15 +00:00
|
|
|
{{ctx.AvatarUtils.AvatarByEmail .verification.SigningEmail "" 16 "signature"}}
|
2020-06-03 00:22:26 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{else}}
|
2023-09-24 20:31:58 +00:00
|
|
|
<span title="{{ctx.Locale.Tr .verification.Reason}}">{{svg "gitea-unlock"}}</span>
|
2020-06-03 00:22:26 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|