2019-06-30 03:57:59 -04:00
|
|
|
{{if $.LatestCommitStatus}}
|
|
|
|
<div class="ui top attached header">
|
|
|
|
{{if eq .LatestCommitStatus.State "pending"}}
|
|
|
|
{{$.i18n.Tr "repo.pulls.status_checking"}}
|
|
|
|
{{else if eq .LatestCommitStatus.State "success"}}
|
|
|
|
{{$.i18n.Tr "repo.pulls.status_checks_success"}}
|
2020-04-16 15:08:20 -04:00
|
|
|
{{else if eq .LatestCommitStatus.State "warning"}}
|
|
|
|
{{$.i18n.Tr "repo.pulls.status_checks_warning"}}
|
|
|
|
{{else if eq .LatestCommitStatus.State "failure"}}
|
|
|
|
{{$.i18n.Tr "repo.pulls.status_checks_failure"}}
|
2019-06-30 03:57:59 -04:00
|
|
|
{{else if eq .LatestCommitStatus.State "error"}}
|
|
|
|
{{$.i18n.Tr "repo.pulls.status_checks_error"}}
|
|
|
|
{{else}}
|
|
|
|
{{$.i18n.Tr "repo.pulls.status_checking"}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{range $.LatestCommitStatuses}}
|
|
|
|
<div class="ui attached segment">
|
|
|
|
<span>{{template "repo/commit_status" .}}</span>
|
|
|
|
<span class="ui">{{.Context}} <span class="text grey">{{.Description}}</span></span>
|
2019-09-18 01:39:45 -04:00
|
|
|
<div class="ui right">
|
|
|
|
{{if $.is_context_required}}
|
|
|
|
{{if (call $.is_context_required .Context)}}<div class="ui label">Required</div>{{end}}
|
|
|
|
{{end}}
|
|
|
|
<span class="ui">{{if .TargetURL}}<a href="{{.TargetURL}}">Details</a>{{end}}</span>
|
|
|
|
</div>
|
2019-06-30 03:57:59 -04:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2019-09-18 01:39:45 -04:00
|
|
|
{{end}}
|