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
{{if $.LatestCommitStatus}}
	{{if not $.Issue.PullRequest.HasMerged}}
		<div class="ui top attached header">
			{{if eq .LatestCommitStatus.State "pending"}}
				{{$.locale.Tr "repo.pulls.status_checking"}}
			{{else if eq .LatestCommitStatus.State "success"}}
				{{$.locale.Tr "repo.pulls.status_checks_success"}}
			{{else if eq .LatestCommitStatus.State "warning"}}
				{{$.locale.Tr "repo.pulls.status_checks_warning"}}
			{{else if eq .LatestCommitStatus.State "failure"}}
				{{$.locale.Tr "repo.pulls.status_checks_failure"}}
			{{else if eq .LatestCommitStatus.State "error"}}
				{{$.locale.Tr "repo.pulls.status_checks_error"}}
			{{else}}
				{{$.locale.Tr "repo.pulls.status_checking"}}
			{{end}}
			</div>
	{{end}}

	{{range $.LatestCommitStatuses}}
		<div class="ui attached segment pr-status">
			{{template "repo/commit_status" .}}
			<div class="status-context">
				<span>{{.Context}} <span class="text grey">{{.Description}}</span></span>
				<div class="ui status-details">
					{{if $.is_context_required}}
						{{if (call $.is_context_required .Context)}}<div class="ui label">{{$.locale.Tr "repo.pulls.status_checks_requested"}}</div>{{end}}
					{{end}}
					<span class="ui">{{if .TargetURL}}<a href="{{.TargetURL}}">{{$.locale.Tr "repo.pulls.status_checks_details"}}</a>{{end}}</span>
				</div>
			</div>
		</div>
	{{end}}
{{end}}