mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 23:29:12 +01:00
d55a0b7238
* Refactor `i18n` to `locale` - Currently we're using the `i18n` variable naming for the `locale` struct. This contains locale's specific information and cannot be used for general i18n purpose, therefore refactoring it to `locale` makes more sense. - Ref: https://github.com/go-gitea/gitea/pull/20096#discussion_r906699200 * Update routers/install/install.go
32 lines
1.3 KiB
Handlebars
32 lines
1.3 KiB
Handlebars
{{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">
|
|
<span>{{template "repo/commit_status" .}}</span>
|
|
<span class="ui">{{.Context}} <span class="text grey">{{.Description}}</span></span>
|
|
<div class="ui right">
|
|
{{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>
|
|
{{end}}
|
|
{{end}}
|