You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
621 B
14 lines
621 B
<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.i18n.Tr "repo.pulls.status_checks_details"}}</a></div>
|
|
{{end}}
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
|