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
  16. 16
  17. 17
  18. 18
  19. 19
  20. 20
  21. 21
  22. 22
  23. 23
  24. 24
  25. 25
  26. 26
  27. 27
  28. 28
  29. 29
  30. 30
  31. 31
  32. 32
  33. 33
  34. 34
  35. 35
  36. 36
  37. 37
  38. 38
  39. 39
  40. 40
  41. 41
  42. 42
  43. 43
  44. 44
  45. 45
  46. 46
  47. 47
  48. 48
  49. 49
  50. 50
  51. 51
  52. 52
  53. 53
  54. 54
  55. 55
  56. 56
  57. 57
  58. 58
  59. 59
{{$index := 0}}
<div class="timeline-item commits-list">
{{range .comment.Commits}}
	{{$tag := printf "%s-%d" $.comment.HashTag $index}}
	{{$index = Add $index 1}}
	<div class="singular-commit" id="{{$tag}}">
		<span class="badge badge-commit">{{svg "octicon-git-commit"}}</span>
		{{if .User}}
			<a href="{{.User.HomeLink}}">
				{{avatar $.root.Context .User}}
			</a>
		{{else}}
			{{avatarByEmail $.root.Context .Author.Email .Author.Name}}
		{{end}}

		<span class="ui float right shabox">
			{{template "repo/commit_statuses" dict "Status" .Status "Statuses" .Statuses "root" $.root}}
			{{$class := "ui sha label"}}
			{{if .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 $.comment.Issue.PullRequest.BaseRepo.Name}}
				<a href="{{$.comment.Issue.PullRequest.BaseRepo.Link}}/commit/{{PathEscape .ID.String}}" rel="nofollow" class="{{$class}}">
			{{else}}
				<span class="{{$class}}">
			{{end}}
			<span class="shortsha">{{ShortSha .ID.String}}</span>
			{{if .Signature}}
				{{template "repo/shabox_badge" dict "root" $.root "verification" .Verification}}
			{{end}}
			{{if $.comment.Issue.PullRequest.BaseRepo.Name}}
				</a>
			{{else}}
				</span>
			{{end}}
		</span>

		{{$commitLink:= printf "%s/commit/%s" $.comment.Issue.PullRequest.BaseRepo.Link (PathEscape .ID.String)}}
		<span class="gt-mono commit-summary {{if gt .ParentCount 1}} grey text{{end}}" title="{{.Summary}}">{{RenderCommitMessageLinkSubject $.root.Context .Message ($.comment.Issue.PullRequest.BaseRepo.Link|Escape) $commitLink $.comment.Issue.PullRequest.BaseRepo.ComposeMetas}}</span>
		{{if IsMultilineCommitMessage .Message}}
			<button class="ui button ellipsis-button" aria-expanded="false">...</button>
		{{end}}
		{{if IsMultilineCommitMessage .Message}}
			<pre class="commit-body gt-hidden">{{RenderCommitBody $.root.Context .Message ($.comment.Issue.PullRequest.BaseRepo.Link|Escape) $.comment.Issue.PullRequest.BaseRepo.ComposeMetas}}</pre>
		{{end}}
	</div>
{{end}}
</div>