2023-11-02 15:49:02 +01:00
|
|
|
{{/*
|
|
|
|
Template Attributes:
|
|
|
|
* CommitStatus: summary of all commit status state
|
|
|
|
* CommitStatuses: all commit status elements
|
|
|
|
* ShowHideChecks: whether use a button to show/hide the checks
|
|
|
|
* is_context_required: Used in pull request commit status check table
|
|
|
|
*/}}
|
|
|
|
|
|
|
|
{{if .CommitStatus}}
|
|
|
|
<div class="commit-status-panel">
|
|
|
|
<div class="ui top attached header commit-status-header">
|
|
|
|
{{if eq .CommitStatus.State "pending"}}
|
|
|
|
{{ctx.Locale.Tr "repo.pulls.status_checking"}}
|
|
|
|
{{else if eq .CommitStatus.State "success"}}
|
|
|
|
{{ctx.Locale.Tr "repo.pulls.status_checks_success"}}
|
|
|
|
{{else if eq .CommitStatus.State "warning"}}
|
|
|
|
{{ctx.Locale.Tr "repo.pulls.status_checks_warning"}}
|
|
|
|
{{else if eq .CommitStatus.State "failure"}}
|
|
|
|
{{ctx.Locale.Tr "repo.pulls.status_checks_failure"}}
|
|
|
|
{{else if eq .CommitStatus.State "error"}}
|
|
|
|
{{ctx.Locale.Tr "repo.pulls.status_checks_error"}}
|
|
|
|
{{else}}
|
|
|
|
{{ctx.Locale.Tr "repo.pulls.status_checking"}}
|
|
|
|
{{end}}
|
2019-06-30 09:57:59 +02:00
|
|
|
|
2023-11-02 15:49:02 +01:00
|
|
|
{{if .ShowHideChecks}}
|
|
|
|
<div class="ui right">
|
|
|
|
<button class="commit-status-hide-checks btn interact-fg"
|
|
|
|
data-show-all="{{ctx.Locale.Tr "repo.pulls.status_checks_show_all"}}"
|
|
|
|
data-hide-all="{{ctx.Locale.Tr "repo.pulls.status_checks_hide_all"}}">
|
|
|
|
{{ctx.Locale.Tr "repo.pulls.status_checks_hide_all"}}</button>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="commit-status-list">
|
|
|
|
{{range .CommitStatuses}}
|
|
|
|
<div class="commit-status-item">
|
|
|
|
{{template "repo/commit_status" .}}
|
|
|
|
<div class="status-context gt-ellipsis">{{.Context}} <span class="text light-2">{{.Description}}</span></div>
|
2022-10-28 15:49:42 +02:00
|
|
|
<div class="ui status-details">
|
|
|
|
{{if $.is_context_required}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{if (call $.is_context_required .Context)}}<div class="ui label">{{ctx.Locale.Tr "repo.pulls.status_checks_requested"}}</div>{{end}}
|
2022-10-28 15:49:42 +02:00
|
|
|
{{end}}
|
2023-09-25 10:56:50 +02:00
|
|
|
<span>{{if .TargetURL}}<a href="{{.TargetURL}}">{{ctx.Locale.Tr "repo.pulls.status_checks_details"}}</a>{{end}}</span>
|
2022-10-28 15:49:42 +02:00
|
|
|
</div>
|
2021-04-11 05:46:37 +02:00
|
|
|
</div>
|
2023-11-02 15:49:02 +01:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-09-18 07:39:45 +02:00
|
|
|
{{end}}
|