mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 06:48:56 +00:00
597b04fe2f
Backport #27231 #27259 manually --------- Co-authored-by: delvh <dev.lh@web.de>
34 lines
1.3 KiB
Handlebars
34 lines
1.3 KiB
Handlebars
{{if $.LatestCommitStatus}}
|
|
{{if not $.Issue.PullRequest.HasMerged}}
|
|
<div class="ui top attached header">
|
|
{{if eq .LatestCommitStatus.State "pending"}}
|
|
{{ctx.Locale.Tr "repo.pulls.status_checking"}}
|
|
{{else if eq .LatestCommitStatus.State "success"}}
|
|
{{ctx.Locale.Tr "repo.pulls.status_checks_success"}}
|
|
{{else if eq .LatestCommitStatus.State "warning"}}
|
|
{{ctx.Locale.Tr "repo.pulls.status_checks_warning"}}
|
|
{{else if eq .LatestCommitStatus.State "failure"}}
|
|
{{ctx.Locale.Tr "repo.pulls.status_checks_failure"}}
|
|
{{else if eq .LatestCommitStatus.State "error"}}
|
|
{{ctx.Locale.Tr "repo.pulls.status_checks_error"}}
|
|
{{else}}
|
|
{{ctx.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">{{ctx.Locale.Tr "repo.pulls.status_checks_requested"}}</div>{{end}}
|
|
{{end}}
|
|
<span>{{if .TargetURL}}<a href="{{.TargetURL}}">{{ctx.Locale.Tr "repo.pulls.status_checks_details"}}</a>{{end}}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
{{end}}
|