gitea

Development moved to Codeberg

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
<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 .verification.SigningUser 28 "signature"}}
		{{else}}
			<span title="{{$.root.locale.Tr "gpg.default_key"}}">{{svg "gitea-lock-cog"}}</span>
			{{avatarByEmail .verification.SigningEmail "" 28 "signature"}}
		{{end}}
		</div>
	{{else}}
		<span title="{{$.root.locale.Tr .verification.Reason}}">{{svg "gitea-unlock"}}</span>
	{{end}}
</div>