{{$class := ""}}
{{if .Commit.Signature}}
{{$class = (printf "%s%s" $class " isSigned")}}
{{if .Verification.Verified}}
{{if eq .Verification.TrustStatus "trusted"}}
{{$class = (printf "%s%s" $class " isVerified")}}
{{else if eq .Verification.TrustStatus "untrusted"}}
{{$class = (printf "%s%s" $class " isVerifiedUntrusted")}}
{{else}}
{{$class = (printf "%s%s" $class " isVerifiedUnmatched")}}
{{end}}
{{else if .Verification.Warning}}
{{$class = (printf "%s%s" $class " isWarning")}}
{{end}}
{{end}}
{{if .Commit.Signature}}
{{end}}
{{if .Note}}
{{end}}
{{template "repo/diff/box" .}}
{{if not $.PageIsWiki}}
{{.i18n.Tr "repo.diff.browse_source"}}
{{end}}
{{if IsMultilineCommitMessage .Commit.Message}} {{template "repo/commit_statuses" dict "Status" .CommitStatus "Statuses" .CommitStatuses "root" $}}
{{RenderCommitBody .Commit.Message $.RepoLink $.Repository.ComposeMetas}}{{end}} {{if .BranchName}} {{svg "octicon-git-branch" 16 "mr-2"}}{{.BranchName}} {{end}} {{if .TagName}} {{svg "octicon-tag" 16 "mr-2"}}{{.TagName}} {{end}}
{{if .Author}}
{{avatar .Author 28 "mr-3"}}
{{if .Author.FullName}}
{{.Author.FullName}}
{{else}}
{{.Commit.Author.Name}}
{{end}}
{{else}}
{{avatarByEmail .Commit.Author.Email .Commit.Author.Email 28 "mr-3"}}
{{.Commit.Author.Name}}
{{end}}
{{TimeSince .Commit.Author.When $.Lang}}
{{if or (ne .Commit.Committer.Name .Commit.Author.Name) (ne .Commit.Committer.Email .Commit.Author.Email)}}
{{.i18n.Tr "repo.diff.committed_by"}}
{{if ne .Verification.CommittingUser.ID 0}}
{{avatar .Verification.CommittingUser 28 "mx-3"}}
{{.Commit.Committer.Name}}
{{else}}
{{avatarByEmail .Commit.Committer.Email .Commit.Committer.Name 28 "mr-3"}}
{{.Commit.Committer.Name}}
{{end}}
{{end}}
{{if .Parents}}
{{.i18n.Tr "repo.diff.parent"}}
{{range .Parents}}
{{if $.PageIsWiki}}
{{ShortSha .}}
{{else}}
{{ShortSha .}}
{{end}}
{{end}}
{{end}}
{{.i18n.Tr "repo.diff.commit"}}
{{ShortSha .CommitID}}
{{svg "octicon-note" 16 "mr-3"}}
{{.i18n.Tr "repo.diff.git-notes"}}:
{{if .NoteAuthor}}
{{if .NoteAuthor.FullName}}
{{.NoteAuthor.FullName}}
{{else}}
{{.NoteCommit.Author.Name}}
{{end}}
{{else}}
{{.NoteCommit.Author.Name}}
{{end}}
{{TimeSince .NoteCommit.Author.When $.Lang}}
{{RenderNote .Note $.RepoLink $.Repository.ComposeMetas}}