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
14 lines
623 B
Handlebars
14 lines
623 B
Handlebars
<a class="ui link commit-statuses-trigger">{{template "repo/commit_status" .Status}}</a>
|
|
<div class="ui popup very wide fixed basic commit-statuses">
|
|
<div class="ui relaxed list divided">
|
|
{{range .Statuses}}
|
|
<div class="ui item singular-status df">
|
|
<span>{{template "repo/commit_status" .}}</span>
|
|
<span class="ui f1">{{.Context}} <span class="text grey">{{.Description}}</span></span>
|
|
{{if .TargetURL}}
|
|
<div class="ui"><a href="{{.TargetURL}}" target="_blank" rel="noopener noreferrer">{{$.root.locale.Tr "repo.pulls.status_checks_details"}}</a></div>
|
|
{{end}}
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|